Dependency management is hard. Luckily with Python there is a program called `virtualenv` that can help isolate different projects and manage dependencies.
## Commands
To create a new python 3.7 environment type in the following:
```bash
virtualenv --python=python3.7 environment_name
```
Of course you can replace the python version with whichever version you like. Now to go into the environment do the following:
This now sets up your python interpreter and other utilities to use the installation in the `environment_name` folder. You can now install python packages using `pip` and have it only reside in this environment.