Created
September 15, 2013 14:44
-
-
Save doloopwhile/6571363 to your computer and use it in GitHub Desktop.
Install pip with venv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
python3.3 -m venv myenv # create virtual environment in `myenv` directory | |
source myenv/bin/activate # use `myenv` environment | |
# install setuptools | |
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python | |
# install pip | |
easy_install pip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment