This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |