Skip to content
Snippets Groups Projects
Commit acac587f authored by patmjen's avatar patmjen
Browse files

Change order of config vars

parent e3dfd4e0
No related branches found
No related tags found
No related merge requests found
...@@ -44,10 +44,10 @@ a100sh ...@@ -44,10 +44,10 @@ a100sh
> ```bash > ```bash
> # Configuration > # Configuration
> # This is what you should change for your setup > # This is what you should change for your setup
> VENV_NAME=venv # Name of your virtualenv (default: venv)
> VENV_DIR=. # Where to store your virtualenv (default: current directory)
> PYTHON_VERSION=3.9.14 # Python version (default: 3.9.14) > PYTHON_VERSION=3.9.14 # Python version (default: 3.9.14)
> CUDA_VERSION=11.6 # CUDA version (default: 11.6) > CUDA_VERSION=11.6 # CUDA version (default: 11.6)
> VENV_DIR=. # Where to store your virtualenv (default: current directory)
> VENV_NAME=venv # Name of your virtualenv (default: venv)
> ``` > ```
5. Your are done! You can now install packages with `pip install <PACKAGE>` and run python3 code with `python`. 5. Your are done! You can now install packages with `pip install <PACKAGE>` and run python3 code with `python`.
......
...@@ -4,10 +4,10 @@ ...@@ -4,10 +4,10 @@
# Configuration # Configuration
# This is what you should change for your setup # This is what you should change for your setup
PYTHON_VERSION=3.9.14 # Python version VENV_NAME=venv # Name of your virtualenv (default: venv)
CUDA_VERSION=11.6 # CUDA version VENV_DIR=. # Where to store your virtualenv (default: current directory)
VENV_DIR=. # Where to store your virtualenv PYTHON_VERSION=3.9.14 # Python version (default: 3.9.14)
VENV_NAME=venv # Name of your virtualenv CUDA_VERSION=11.6 # CUDA version (default: 11.6)
# Load modules # Load modules
module load python3/$PYTHON_VERSION module load python3/$PYTHON_VERSION
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment