Python venv setting on MSI
# load python3 (Anaconda)
module load python3
# Generate vitual environment directory (it would locate the same directory, so check your directory)
python -m venv venv-ecosys
# Activate venv
source venv-ecosys/bin/activate
# install library what you want using pip
pip install plotly==4.3.0
# if you want to deactivate venv
deactivatePBS script should be added
# load python3 (Anaconda)
module load python3
# Activate venv (check directory or use absolute path)
source venv-ecosys/bin/activate
# after this, you can run your python codes.