Created
April 18, 2016 12:54
-
-
Save gmic/fd9bcd4991923a5df839cb74eac91519 to your computer and use it in GitHub Desktop.
Add jython as virtualenv on Mac
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
# Add jython as virtualenv on Mac | |
brew install jython | |
virtualenv -p /usr/local/bin/jython jython-env --no-setuptools | |
. ./jython-env/bin/activate | |
wget https://bootstrap.pypa.io/ez_setup.py | |
python ez_setup.py --insecure | |
wget https://bootstrap.pypa.io/get-pip.py | |
python get-pip.py | |
deactivate | |
. ./jython-env/bin/activate | |
jython --version | |
pip --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment