We load `numpy` and `scipy` as modules, since the HPC team have made optimized versions for the HPC cluster.
3.Activate the virtualenv by running:
4.Call
```
```
source <VENV_NAME>/bin/activate
source init.sh
```
```
This will setup and activate your virtualenv. You must **do this every time** you log in or change node (e.g. by calling `sxm2sh`)!
> **Tip:** You can configure the Python version, CUDA version, and name and location of the virtualenv by changing the variables at the top of `init.sh`.
> __Pro tip:__ To make life easy, put these commands in a bash script called `init.sh`:
5. Your are done! You can now install packages with `pip install <PACKAGE>` and run python3 code with `python`.
> ```
> __Troubleshooting:__ If pip doesn't work, you may need to manually install it with: `easy_install pip`