Skip to content

Instantly share code, notes, and snippets.

@doloopwhile
Last active December 23, 2015 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save doloopwhile/6571087 to your computer and use it in GitHub Desktop.
Save doloopwhile/6571087 to your computer and use it in GitHub Desktop.
Install setuptools and pip after venv
#!/bin/bash
python3.3 -m venv myenv # `myenv` ディレクトリに仮想環境を作る
source myenv/bin/activate # `myenv` 環境を使う
# setuptoolsのインストール
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python
# pipのインストール
easy_install pip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment