Skip to content

Instantly share code, notes, and snippets.

@yiminking
yiminking / create_conda.sh
Last active January 12, 2021 14:10 — forked from twinkarma/create_conda.sh
Creating anaconda environment on JADE
# Load the module
module load python3/anaconda
# Create an environment
conda create -n myenv python=3.8
# Activate the enviornment, which is in .conda/envs/myenv
source activate myenv
# Install whatever packages you need .. for example TF-gpu and numpy