It appears that Xcode4 doesn\'t include PPC as a build option anymore.When using setup.py for modules that include C extensions, setup.py always attempts the build with these options:
I\'m trying to install a simple python library I created and think I may be missing a step. The setup goes fine (or runs at least) but when I import it doesn\'t work as I expect.
Currently I\'m working on one of my first python projects so sorry in advance if some problems seems to be a bit too simple... Anyway.
I\'m trying to figure out how to make my program installable via distutils. My end goal is to make a .deb installer for ubuntu users. The main issue is getting a \"one-click\" launcher file to work.
I\'ve got a Python package with its setup.py having dependencies declared via the usual way, in install_requires=[...].One of the packages there, scikits.timeseries, has a setup.py expecting numpy to
I\'ve got a program/joke that needs a reasonably large data structure to operate, (a dictionary that takes a few开发者_JS百科 seconds to construct) and I would like to create and pickle it into the in
When I run python setup.py sdist it creates an sdist in my ./dist directory. This includes a \"PROJECT-egg.info\" file in the zip inside my \"dist\" folder, which I don\'t use, but it doesn\'t hurt
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\'ve taken a library that is distributed as a binary lib (.a) and header, written some c++ code against it, and want to wrap the results up in a python module.
I have a python source distribution, and it depends on some other modules that I\'ve also made. The directory tree looks like this.