Skip to content

Instantly share code, notes, and snippets.

@Zowie
Created December 15, 2014 14:30
Show Gist options
  • Save Zowie/1102ee35bd218390e387 to your computer and use it in GitHub Desktop.
Save Zowie/1102ee35bd218390e387 to your computer and use it in GitHub Desktop.
Bash Pyvenv 3.4 Debian workaround
#!/bin/bash
if [ -z $1 ]; then
echo "Enter env name as first argument please"
exit 1
fi
pyvenv-3.4 --without-pip $1
source $1/bin/activate
curl https://bootstrap.pypa.io/get-pip.py | python
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment