Demo to show how to set up Anaconda and conda environments on phoenix HPC cluster
First clone this repository and change to its directory
git clone https://github.com/stevekm/conda-phoenix.git
cd conda-phoenix
Install Anaconda to the current directory
- path can be changed with the
INSTALL_DIR
variable in the Makefile
make install
The Makefile can run the steps needed to setup a new Anaconda environment by running the command:
make setup
Afterwards, you can check that it worked by running the command:
make test
The same steps can be accomplished with the included shell scripts. After running make install
to install Anaconda, you can setup the example xmltodict
Conda environment with:
./setup_xmltodict.sh
and then activate the new environment with:
source activate_xmltodict.sh
Deactivate the Conda environment with:
source deactivate