Skip to content

Instantly share code, notes, and snippets.

@jcrafford
Created February 10, 2015 14:00
Show Gist options
  • Select an option

  • Save jcrafford/34ac8df6e33dcdb7d041 to your computer and use it in GitHub Desktop.

Select an option

Save jcrafford/34ac8df6e33dcdb7d041 to your computer and use it in GitHub Desktop.
Fix virtualenv after Python upgrade
# navigate to virtualenv dir containing project
workon <project>
deactivate
cd ..
# delete broken links
find <project>/ -type l -delete
# re-create the virtualenv
virtualenv <project>
# test
workon <project>
python
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment