Why can I not create a wheel in python?
Here are the commands I am running: $ python setup.py bdist_wheel usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] …] or: setup.py –help [cmd1 … Read more
Here are the commands I am running: $ python setup.py bdist_wheel usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] …] or: setup.py –help [cmd1 … Read more
Is there any significant difference between pip install -e /path/to/mypackage and the setuptools variant? python /path/to/mypackage/setup.py develop 4 Answers 4
I’ve read the documentation on egg entry points in Pylons and on the Peak pages, and I still don’t really understand. Could someone … Read more
Short Question What is the proper way to install pip, virtualenv, and distribute? Background In my answer to SO question 4314376, I recommended … Read more
I have a requirements.txt file that I’m using with Travis-CI. It seems silly to duplicate the requirements in both requirements.txt and setup.py, so … Read more
Two options in setup.py develop and install are confusing me. According to this site, using develop creates a special link to site-packages directory. … Read more
I’m deploying a Django app to a dev server and am hitting this error when I run pip install -r requirements.txt: Traceback (most … Read more
The Situation I’m trying to port an open-source library to Python 3. (SymPy, if anyone is wondering.) So, I need to run 2to3 … Read more
I want to install pip. It should support Python 3, but it requires setuptools, which is available only for Python 2. How can … Read more
Python’s easy_install makes installing new packages extremely convenient. However, as far as I can tell, it doesn’t implement the other common features of … Read more