forked from ersilia-os/zaira-chem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_linux.sh
64 lines (47 loc) · 1.89 KB
/
install_linux.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
54
55
56
57
58
59
60
61
62
63
64
WORKDIR=$PWD
conda init bash
# create zairachem conda environment
ZAIRACHEM_ENVIRONMENT='zairachem'
conda create -n $ZAIRACHEM_ENVIRONMENT python=3.7 -y
source $CONDA_PREFIX/etc/profile.d/conda.sh
conda activate $ZAIRACHEM_ENVIRONMENT
# pip
python3 -m pip install -U pip
python3 -m pip install -U setuptools wheel
python3 -m pip install tables openpyxl
# other pip-installable dependencies
python3 -m pip install tensorflow==2.10.0
python3 -m pip install autokeras==1.0.20 #==1.0.16
# install autogluon cpu
python3 -m pip install -U "mxnet<2.0.0"
python3 -m pip install autogluon.tabular[all]==0.5.2
# install autogluon gpu
# Here we assume CUDA 10.1 is installed. You should change the number
# according to your own CUDA version (e.g. mxnet_cu100 for CUDA 10.0).
#python3 -m pip install -U "mxnet_cu101<2.0.0"
#python3 -m pip install autogluon
# necessary requirements for flaml
python3 -m pip install "xgboost==1.3.3"
python3 -m pip install "SQLAlchemy<1.4.0"
# install extra dependencies
python3 -m pip install git+https://github.com/chembl/[email protected]
python3 -m pip install -q -U keras-tuner==1.1.3
# install ersilia
python3 -m pip install git+https://github.com/ersilia-os/ersilia.git
ersilia --help
# install ersilia compound embedding
python3 -m pip install git+https://github.com/ersilia-os/compound-embedding-lite.git
# install isaura
python3 -m pip install git+https://github.com/ersilia-os/isaura.git@ce293244ad0bdd6d7d4f796d2a84b17208a87b56
# install stylia
python3 -m pip install git+https://github.com/ersilia-os/stylia.git
# install lazy-qsar
python3 -m pip install git+https://github.com/ersilia-os/[email protected]
# install melloddy-tuner
python3 -m pip install git+https://github.com/melloddy/[email protected]
# install tabpfn
python3 -m pip install tabpfn==0.1.8
# install imblearn
python3 -m pip install imbalanced-learn==0.10.1
# install zairachem
python3 -m pip install -e .