Skip to content

Commit

Permalink
Merge pull request #38 from HellenNamulinda/main
Browse files Browse the repository at this point in the history
Use Python=3.10
  • Loading branch information
GemmaTuron authored Apr 4, 2024
2 parents 4db27e7 + 21e7a91 commit b92fd8f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 20 deletions.
11 changes: 6 additions & 5 deletions install_linux.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
WORKDIR=$PWD

conda init bash
#conda init bash
eval "$(conda shell.bash hook)"

# 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 create -n $ZAIRACHEM_ENVIRONMENT python=3.10 -y
#source $CONDA_PREFIX/etc/profile.d/conda.sh
conda activate $ZAIRACHEM_ENVIRONMENT

# pip
Expand All @@ -15,11 +16,11 @@ 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
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
python3 -m pip install autogluon.tabular[all]==0.7.0

# install autogluon gpu
# Here we assume CUDA 10.1 is installed. You should change the number
Expand Down
32 changes: 17 additions & 15 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
loguru
click
joblib
pandas
scikit-learn
dask
tqdm
faiss-cpu
umap-learn
lolP
seaborn
networkx
timeout_decorator
standardiser
exmol
loguru==0.6.0
joblib==1.2.0
scikit-learn==1.2.2
faiss-cpu==1.8.0
umap-learn==0.5.5
lolP==0.0.4
seaborn==0.12.2
networkx==2.8.8
standardiser==0.1.9
exmol==3.0.3
pytdc==0.4.1
pandas==1.5.3
tqdm==4.66.1
ray==1.13.0
numpy==1.23.5
protobuf==3.19.5
python-Levenshtein==0.25.0

0 comments on commit b92fd8f

Please sign in to comment.