-
Notifications
You must be signed in to change notification settings - Fork 6
/
config_conda_env.sh
executable file
·53 lines (44 loc) · 1.06 KB
/
config_conda_env.sh
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
#!/bin/bash
# update base conda
conda update -y -n base -c defaults conda
# install dependencies from main channel
conda install -c conda-forge nodejs=15.14.0
conda install -y \
requests \
requests-oauthlib \
numpy \
scipy \
pandas \
scikit-image \
matplotlib \
plotly \
jupyter \
jupyterlab \
qtpy \
pyqtgraph \
inflect \
astropy
# install dependencies from conda-forge
conda install -y -c conda-forge \
ipywe \
lmfit
conda install -c conda-forge nbstripout
conda install -c oncat pyoncat
# install additional from pip
pip install \
chardet \
h5py \
algotom \
neutronbraggedge \
NeuNorm \
sectorizedradialprofile \
ImagingReso \
ipywidgets \
changepy \
tqdm \
werkzeug=2.0.1 \
pystackreg
# build Jupyter lab
jupyter labextension install @jupyter-widgets/jupyterlab-manager
jupyter nbextension enable --py widgetsnbextension
jupyter lab build