A library that allows you to build and manage Python virtual environments. You can build and manage a virtual environment that is separated for each Python version and each project. As a result, it is possible to manage each virtual environment, and it is possible to avoid the problem that the libraries do not work due to the dependency between the libraries.
$ virtualenv <Project name>
$ source /bin/activate
$ . /bin/activate
$ deactivate
Recommended Posts