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 1ee15c7 + 0cfb601 commit 17e091f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 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
4 changes: 2 additions & 2 deletions requirements.txt
Git LFS file not shown

0 comments on commit 17e091f

Please sign in to comment.