File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -85,11 +85,26 @@ Interpreter Tools
85
85
virtualenv
86
86
----------
87
87
88
+ Virtualenv is a tool to keep the dependencies required by different projects in separate places, by creating virtual Python environments for them.
89
+ It solves the "Project X depends on version 1.x but, Project Y needs 4.x" dilemma and keeps your global site-packages directory clean and manageable.
88
90
89
91
virtualenvwrapper
90
92
-----------------
91
93
94
+ Virtualenvwrapper makes virtualenv a pleasure to use by wrapping the command line API with a nicer CLI.
92
95
96
+ ::
97
+
98
+ pip install virtualenvwrapper
99
+
100
+
101
+ Put this into your `~/.bash_profile ` (Linux/Mac) file:
102
+
103
+ ::
104
+
105
+ export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'
106
+
107
+ This will prevent your virtualenvs from relying on your (global) site packages directory, so that they are completely separate..
93
108
94
109
Other Tools
95
110
:::::::::::
You can’t perform that action at this time.
0 commit comments