Hardcode tool versions in install_conda.sh

This commit is contained in:
Eren Dogan 2023-09-20 14:58:58 -07:00
parent 1a8c27c549
commit 3b6cc2f3a8
1 changed files with 9 additions and 1 deletions

View File

@ -3,7 +3,15 @@ CONDA_INSTALLER_URL="https://repo.anaconda.com/miniconda/Miniconda3-py38_22.11.1
CONDA_INSTALLER_FILE="miniconda_installer_py38.sh"
CONDA_HOME="${CONDA_HOME:-miniconda}"
TOOLS="klayout magic netgen ngspice trilinos xyce"
# The tool name format is "<tool>=<version>".
# If you want to use the latest version, just use "<tool>".
TOOLS=""
TOOLS+="klayout=0.28.3 "
TOOLS+="magic=8.3.363 "
TOOLS+="netgen=1.5.253 "
TOOLS+="ngspice=26 "
TOOLS+="trilinos=12.12.1 "
TOOLS+="xyce=7.4"
# Install miniconda if not already installed
if [[ ! -d "${CONDA_HOME}/bin" ]]