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
| #!/usr/bin/env python | |
| import codecs | |
| import os | |
| import re | |
| from setuptools import find_packages, setup | |
| ######################################## |
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
| # 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> |