Skip to content

Instantly share code, notes, and snippets.

@emergent
Created July 16, 2018 12:02
Show Gist options
  • Save emergent/8b8f47571320753c985b86c2647a7e35 to your computer and use it in GitHub Desktop.
Save emergent/8b8f47571320753c985b86c2647a7e35 to your computer and use it in GitHub Desktop.
Pythonとvirtualenvのセットアップ@MacOS X ref: https://qiita.com/emergent/items/2c35ffbf7d13ffa35cb5
$ xcode-select --install
$ brew install python python3
$ pip3 install --upgrade virtualenv
$ cd your-project
$ virtualenv --python python3 env
$ source env/bin/activate
$ deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment