-
Notifications
You must be signed in to change notification settings - Fork 2
/
environment.yml
54 lines (49 loc) · 1.08 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
name: elmed219
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
## Configure the Conda-environment elmed219 for data analysis, computational imaging and modeling (only once):
# conda env create -f environment.yml
## To make a ELMED219 kernel (optional):
# python -m ipykernel install --user --name elmed219 --display-name "ELMED219"
## To activate the elmed219 conda environment:
# conda activate elmed219
## To update the elmed219 conda environment:
# conda env update -f environment.yml
## To remove and reinstall the elmed219 environment (if installation problems):
# conda deactivate
# conda env remove -n elmed219
# conda env create -f environment.yml