Created
December 11, 2013 23:42
-
-
Save jmvrbanac/7920633 to your computer and use it in GitHub Desktop.
Using pyenv virtualenvs in a Jenkins Job
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
#!/bin/bash | |
set +x | |
# Setup all of the pyenvs | |
export PATH="$HOME/.pyenv/bin:$PATH" | |
export CONFIGURE_OPTS='--enable-shared' | |
eval "$(pyenv init -)" | |
pyenv shell 2.7.5 | |
pyenv virtualenvwrapper | |
pyenv rehash | |
# Make virtualenv | |
mkvirtualenv my_env |
eval "$(pyenv init -)" is not working anymore.
use instead:
eval "$(pyenv init --path)
Thanks
Rez
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is working great, especially when running pyenv from Jenkins.