Find all packages installed with easy_install/pip?
Is there a way to find all Python PyPI packages that were installed with easy_install or pip? I mean, excluding everything that was/is … Read more
Is there a way to find all Python PyPI packages that were installed with easy_install or pip? I mean, excluding everything that was/is … Read more
I need to install a package from PyPi straight within my script. Maybe there’s some module or distutils (distribute, pip etc.) feature which … Read more
My Python package has a setup.py which builds fine locally on Ubuntu Trusty and on a fresh Vagrant Ubuntu Trusty VM when I … Read more
I have installed a python package with python setup.py install. How do I uninstall it? 17 s 17 Note: Avoid using python setup.py … Read more
A tweet reads: Don’t use easy_install, unless you like stabbing yourself in the face. Use pip. Why use pip over easy_install? Doesn’t the … Read more
Can anyone please explain what setup.py is and how it can be configured or used? 10 setup.py is a python file, the presence … Read more
I am trying to install version 1.2.2 of MySQL_python, using a fresh virtualenv created with the –no-site-packages option. The current version shown in … Read more