Skip to content

Instantly share code, notes, and snippets.

@jinhoyoo
Forked from jmvrbanac/gist:7920633
Created October 18, 2018 02:37
Show Gist options
  • Save jinhoyoo/1eee3e6fd4fcaf511de34a425605faff to your computer and use it in GitHub Desktop.
Save jinhoyoo/1eee3e6fd4fcaf511de34a425605faff to your computer and use it in GitHub Desktop.
Using pyenv virtualenvs in a Jenkins Job
#!/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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment