Installing python virtualenv: Difference between revisions
From IThelp
Added the page. Translated from "Installere python virtualenv". |
La til lenke til den norske siden. Rettet trykkfeil. |
||
Line 1: | Line 1: | ||
[[no: Installere python virtualenv]] | |||
== Virtualenv == | == Virtualenv == | ||
Virtualenv creates an isolated space for a project, together with a copy all you need to run a python program. The virtualenv tool can f.i. be used to solve problems that arise from having multiple python projects with different/incompatible demands to the setup of a given system. | Virtualenv creates an isolated space for a project, together with a copy of all you need to run a python program. The virtualenv tool can f.i. be used to solve problems that arise from having multiple python projects with different/incompatible demands to the setup of a given system. | ||
Installing virtualenv: | Installing virtualenv: |
Revision as of 14:05, 25 January 2018
Virtualenv
Virtualenv creates an isolated space for a project, together with a copy of all you need to run a python program. The virtualenv tool can f.i. be used to solve problems that arise from having multiple python projects with different/incompatible demands to the setup of a given system.
Installing virtualenv:
[user@hostname ~]$ sudo apt-get install python-virtualenv
Creating an isolated space for a given project, with pip included:
[user@hostname ~]$ cd path/to/all/my/projects [user@hostname allmyprojects]$ virtualenv myproject_env [user@hostname allmyprojects]$ cd myproject_env [user@hostname myproject_env]$ source bin/activate
Adding python packages to the prosject:
[user@hostname myproject_env]$ pip install pythonpackage
- The packages will be stored in myproject_env/. They are only available for the given project.
To complete/close work on a project:
(myproject_env)[user@hostname myproject_env]$ deactivate