-
Notifications
You must be signed in to change notification settings - Fork 65
Installing Previous CDAT Versions
Wiki ▸ Documentation ▸ Installing Previous CDAT Versions
We offer an installation for conda users under linux-64 or osx-64. Support for Windows is also available via the Windows Subsystem for Linux.
- Anaconda or Miniconda
- If you didn't let Anaconda or Miniconda prepend the Anaconda<2 or 3> install location to PATH, make sure conda is in your PATH (for more information see the Anaconda Documentation). Assuming Ananconda is installed in ${HOME}/anaconda:
-
export PATH=${HOME}/anaconda/bin:${PATH}# for [ba]sh -
setenv PATH ${HOME}/anaconda/bin:${PATH}# for [t]csh
-
- Make sure you have nothing left over from an old CDAT installation in your
PATH/PYTHONPATH,LD_LIBRARY_PATHetc...
- Windows is supported via the Windows Subsystem for Linux which comes with Windows 10.
- You will need to set things up as instructed here and then follow the regular instructions for Linux.
- If your institution has tight ssl certificate/security issues try:
conda config --set ssl_verify falsebinstar config --set ssl_verify False
The easiest way to install earlier official stable releases of CDAT is to download the corresponding conda environment using the provided links below.
For older CDAT versions, we provide env files for both Mac and Linux and for Python2 and Python3.
For each of these we also provide a mesalib-enabled version which is especially useful for users running batch jobs remotely on "headless" machines that do not have a graphics card or display attached. In the mesalib-enabled version plot will NOT require a X11 connection and images will be rendered in memory rather than onscreen. A user will not see any results until he or she saves the output to a .png file.
Once downloaded simply run:
conda env create -n [your_env] -f [your_env].yaml
conda activate [your_env]
On older conda versions you might need:
source activate [your_env]
Alternatively, you can use regular conda commands to generate the environment.
For Python 3, use:
conda create -n [your_env] -c cdat/label/v81 -c conda-forge python=3.6 cdat
conda activate [your_env]
For Python 2, use:
conda create -n [your_env] -c cdat/label/v81 -c conda-forge python=2.7 cdat
conda activate [your_env]
On older versions of anaconda you might need:
source activate [your_env]
If you wish to obtain the mesalib-enabled version (headless display) simply add mesalib at the end of the install line:
conda create -n [your_env] -c cdat/label/v81 -c conda-forge python=3.6 cdat mesalib
For Python 2 use:
conda create -n [your_env] -c cdat/label/v81 -c conda-forge python=2.7 cdat mesalib
or simply install it after the fact.
conda install -c cdat/label/v81 -c conda-forge mesalib vtk-cdat