Confirmed users
1,867
edits
Line 19: | Line 19: | ||
<i>Exception: use 32-bit version of the setuptools even if your operating system is 64-bit otherwise it fails to find the Python installation.</i> | <i>Exception: use 32-bit version of the setuptools even if your operating system is 64-bit otherwise it fails to find the Python installation.</i> | ||
<ol> | <ol> | ||
<li>Install the 32-bit version of SetupTools using the provided | <li>Install the 32-bit version of SetupTools using the provided .exe installer:</li> | ||
http://pypi.python.org/pypi/setuptools#files | http://pypi.python.org/pypi/setuptools#files | ||
<li>Download the last pip version and uncompress it:</li> | <li>Download the last pip version and uncompress it:</li> | ||
http://pypi.python.org/pypi/pip#downloads | http://pypi.python.org/pypi/pip#downloads | ||
<li>In your | <li>In your cmd prompt, go to the uncompressed pip directory and run:</li> | ||
python setup.py install | python setup.py install | ||
<li>Add the Scripts directory to your System Variables path:</li> | <li>Add the Scripts directory to your System Variables path:</li> | ||
Line 31: | Line 31: | ||
=== Virtualenvwrapper Installation and Usage === | === Virtualenvwrapper Installation and Usage === | ||
<ol> | <ol> | ||
<li>From the | <li>From the cmd prompt install pip:</li> | ||
pip install virtualenvwrapper-win | pip install virtualenvwrapper-win | ||
<li>Set your environment variable:</li> | <li>Set your environment variable:</li> | ||
WORKON_HOME = C:\Python27\Scripts: | WORKON_HOME = C:\Python27\Scripts: | ||
<li>You can now create | <li>You can now create virtualenvs:</li> | ||
mkvirtualenv <<i>name of the environment</i>> | mkvirtualenv <<i>name of the environment</i>> | ||
</ol> | </ol> |