File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -265,6 +265,27 @@ print(a_module.__file__)
265265python -m easy_install
266266----
267267
268+ === Using Python Anaconda distribution as a virtual environment
269+
270+ Source: http://stackoverflow.com/questions/16727171/installing-anaconda-into-a-virtual-environment
271+
272+ [source,sh,linenums]
273+ ----
274+ # Download Python Anaconda from http://continuum.io/downloads
275+ cd /tmp/
276+ wget <anaconda-download-url>
277+
278+ # Install Anaconda into a place
279+ bash Anaconda-*.sh -b -p <anaconda-destination>
280+ ----
281+
282+ Now whenever you want to use Python from Anaconda:
283+
284+ [source,sh,linenums]
285+ ----
286+ source <anaconda-destination>/bin/activate <anaconda-destination>
287+ ----
288+
268289== FAQs
269290
270291=== Why global interpreter lock (GIL) in CPython?
You can’t perform that action at this time.
0 commit comments