added comments regarding environment variables for applications that depend on specific paths

This commit is contained in:
Kerem Kayabay 2024-04-24 08:56:13 +02:00
parent 4813252b38
commit bb1e5fc102
1 changed files with 8 additions and 1 deletions

View File

@ -90,13 +90,20 @@ rm your_environment.tar.gz
```bash
# Request an interactive job allocation for 5 minutes on a CPU node
qsub -I -l select=1:node_type=rome -l walltime=00:05:00
# Load the Conda module
module load bigdata/conda
source activate # activates the base environment
# List available Conda environments (for verification purposes)
# List available Conda environments for verification purposes
conda env list
# Activate a specific Conda environment.
conda activate your_environment # you need to execute `source activate` first, or use `source [ENV_PATH]/bin/activate`
# Ensure environment variables are set correctly for the custom Conda environment
# This is critical for applications that depend on specific paths within the Conda environment
# Add any additional commands you want to run within the Conda environment below this line.
```