I\'m running Python 2.7 on Windows 7 64-bit, and when I run the installer for setuptools it tells me that Pyth开发者_如何学运维on 2.7 is not installed.The specific error message is:
I was t开发者_开发百科rying the python packaging using setuptools and to test I installed the module in develop mode.
I am switching from Linux to OSX and when I run our build\'s setup.py script, I get an error message that contains the text
I\'m wondering about the correct/easiest/most pythonic way of dealing with subprojects that you want have using the same base package. We currently have a file structure like this:
My application needs lxml >= 2.1, but to install lxml its requied to install libxml2-dev libxslt1-dev else it r开发者_StackOverflow社区aises error while installing the lxml,
I\'m trying to install MySQLdb-python on a server I don\'t have root on. It doesn\'t have appropriate mysql development files that python setup.py build would usually compile into _mysql.so. I\'ve obt
I\'ve just started working with setuptools and virtualenv. My package requires the latest python-gearman that is only available from GitHub. The python-gearman version that\'s on PyPI is an old one. T
What is the right way (or I\'ll settle for a good way) to lay out a command line python application of moderate complexity?I\'ve created a python project skeleton using paster, which gave me a few fil
I\'m having trouble with setuptools in a larger project where a python package has to be \"constructed\" from several debian packages (each containing a subpackage of the \"main\" package). Thus we de
I found Question#1321270 for post install. My main target for the moment is bdist_wininst, but i did not find anything related to uninstall...