You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Virtual Environment is a tool to keep the dependencies required by different projects
52
-
in separate places, by creating virtual Python environments for them. It solves the
53
-
"Project X depends on version 1.x but, Project Y needs 4.x" dilemma, and keeps
116
+
A Virtual Environment is a tool to keep the dependencies required by different projects
117
+
in separate places, by creating virtual Python environments for them. It solves the
118
+
"Project X depends on version 1.x but, Project Y needs 4.x" dilemma, and keeps
54
119
your global site-packages directory clean and manageable.
55
120
56
121
For example, you can work on a project which requires Django 1.3 while also
57
122
maintaining a project which requires Django 1.0.
58
123
59
-
To start using and see more information: `Virtual Environments <http://github.com/kennethreitz/python-guide/blob/master/docs/dev/virtualenvs.rst>`_ docs.
124
+
To start using and see more information: `Virtual Environments <http://github.com/kennethreitz/python-guide/blob/master/docs/dev/virtualenvs.rst>`_ docs.
60
125
61
126
You can also use :ref:`virtualenvwrapper <virtualenvwrapper-ref>` to make it easier to
62
127
manage your virtual environments.
@@ -65,4 +130,3 @@ manage your virtual environments.
65
130
66
131
This page is a remixed version of `another guide <http://www.stuartellis.eu/articles/python-development-windows/>`_,
0 commit comments