diff --git a/example_submit.sh b/example_submit.sh index 79838d3..e6fb763 100644 --- a/example_submit.sh +++ b/example_submit.sh @@ -33,11 +33,12 @@ #Get rid of any modules that might still be running module purge +# Create virtual env python3 -m venv myenv -source myenv/bin/activate +source ... -# Install the required packages -pip install -r requirements.txt +# Install the required packages from requirements.txt +pip ... # Run the desired program -python3 example_script.py \ No newline at end of file +python3