Skip to content

Instantly share code, notes, and snippets.

@doloopwhile
Created September 15, 2013 14:44
Show Gist options
  • Save doloopwhile/6571363 to your computer and use it in GitHub Desktop.
Save doloopwhile/6571363 to your computer and use it in GitHub Desktop.
Install pip with venv
#!/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