Last active
November 23, 2016 13:44
-
-
Save otech-nl/c6770bbe21b0c072e5b980baa3995560 to your computer and use it in GitHub Desktop.
python on MacOS
This file contains hidden or 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
# enforce UTF-8 even if defaultencoding says 'ascii' | |
export PYTHONIOENCODING=utf-8 | |
# make sure pip only works in a virtualenv | |
export PIP_REQUIRE_VIRTUALENV=true | |
# unless... | |
gpip() { | |
PIP_REQUIRE_VIRTUALENV="" pip "$@" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment