-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
57 lines (51 loc) · 1.1 KB
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: bmed365
channels:
- conda-forge
dependencies:
- python=3.11
- ipython
- ipykernel
- ipywidgets
- pandas
- matplotlib
- seaborn
- jupyter
- jupyterlab
- git
- pip
- pip:
- gdown
- pycaret
- shap
- catboost
- xgboost
- pyreadstat
- statsmodels
- pingouin
- voila
- scikit-learn
- scikit-image
- SimpleITK
- itkwidgets
- imageio
- dcm2niix
- readimc
- tiffile
- nilearn
- networkx
- dipy
- openpyxl
- tqdm
- PyWavelets
## Configure the Conda-environment bmed365 for data analysis, computational imaging and modeling (only once):
# conda env create -f environment.yml
## To make a BMED365 kernel (optional):
# python -m ipykernel install --user --name bmed365 --display-name "BMED365"
## To activate the bmed365 conda environment:
# conda activate bmed365
## To update the bmed365 conda environment:
# conda env update -f environment.yml
## To remove and reinstall the bmed365 environment (if installation problems):
# conda deactivate
# conda env remove -n bmed365
# conda env create -f environment.yml