Tagged Questions
91
votes
5answers
8k views
Why use pip over easy_install?
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 fault lie with PyPI and package authors mostly? If ...
45
votes
4answers
15k views
How to install pip on windows?
The python software pip is a replacement for *easy_install*. But I will install pip using easy_install on Windows. Is there a better way?
Edit:
This also seems to work:
Download the last easy ...
13
votes
2answers
4k views
Questions about Setuptools and alternatives
I've seen a good bit of setuptools bashing on the internets lately. Most recently, I read James Bennett's On packaging post on why no one should be using setuptools. From my time in #python on ...
6
votes
1answer
1k views
Can Pip install dependencies not specified in setup.py at install time?
Hi all
I'd like pip to install a dependency that I have on GitHub when the user issues the command to install the original software, also from source on GitHub. Neither of these packages are on PyPi ...
6
votes
1answer
1k views
“UserWarning: Unbuilt egg for setuptools” - What does this actually mean?
When I install things into a virtualenv using pip I often see the message "UserWarning: Unbuilt egg for setuptools". I always safely ignore it and go about my business and it doesn't seem to cause me ...
5
votes
11answers
559 views
What is the official “preferred” way to install pip and virtualenv systemwide?
Is it this, which people seem to recommend most often:
$ sudo apt-get install python-setuptools
$ sudo easy_install pip
$ sudo pip install virtualenv
Or this, which I got from ...
5
votes
2answers
417 views
Which is the most pythonic: installing python modules via a package manager ( macports, apt) or via pip/easy_install/setuptools
Usually I tend to install things via the package manager, for unixy stuff. However, when I programmed a lot of perl, I would use CPAN, newer versions and all that.
In general, I used to install ...
4
votes
1answer
929 views
No module named pkg_resources
I'm deploying a Django app to a dev server and am hitting this error when i run pip install requirements.txt:
Traceback (most recent call last):
File "/var/www/mydir/virtualenvs/dev/bin/pip", line ...
4
votes
1answer
77 views
Find where dependencies are coming from in Python?
When I run pip install . I get all dependencies installed, including transitive dependencies, but the problem is that there are two modules that depend on two different versions of lxml. How can I ...
4
votes
5answers
517 views
Python - Is there any way to get pip without setuptools?
Seems kinda weird that they'd require a package manager to install a package manager. I'm on Windows BTW.
4
votes
1answer
339 views
Does pip handle extras_requires from setuptools/distribute based sources?
I have package "A" with a setup.py and an extras_requires line like:
extras_require = {
'ssh': ['paramiko'],
},
And a package "B" that depends on util:
install_requires = ['A[ssh]']
If I ...
4
votes
4answers
653 views
Can a Python package depend on a specific version control revision of another Python package?
Some useful Python packages are broken on pypi, and the only acceptable version is a particular revision in a revision control system. Can that be expressed in setup.py e.g
requires = ...
3
votes
1answer
284 views
When to use pip requirements file versus install_requires in setup.py?
I'm using pip with virtualenv to package and install some Python libraries.
I'd imagine what I'm doing is a pretty common scenario. I'm the maintainer on several libraries for which I can specify ...
2
votes
0answers
35 views
python packages: how to depend on the latest version of a separate package
I'm developing coding a test django site, which I keep in a bitbucket repository in order to be able to deploy it easily on a remote server, and possible share development with a friend. I use hg for ...
2
votes
0answers
78 views
installing a Python package source tarball with pip
I'm trying to figure out how to construct a Python source package that is installable via pip. I tried creating a test project with the setup.py file described on ...
2
votes
2answers
578 views
Using Pip, how do I force upgrade non-upgraded packages only?
When running Pip with a requirements.txt file which has fixed versions, we get the following error (or similar):
VersionConflict: (solrpy 0.9.1
...
2
votes
2answers
2k views
PIP install a Python Package without a setup.py file?
I'm trying to figure out how I can install a python package that doesn't have a setup.py file with pip. (package in question is http://code.google.com/p/django-google-analytics/)
Normally I would ...
1
vote
1answer
57 views
How to find the location of a python package installed via egg-link?
I'm working on a plugin architecture and need to convert a package name like "foo.bar" to the absolute path where the code resides. imp.find_module seems to do what I want, except when the code in ...
1
vote
1answer
236 views
Installing with pip breaks on python setup.py egg_info
I'm trying to install my own program via Pip and the PyPI with the usual command pip install tvrenamr however I'm getting the error below:
Downloading/unpacking tvrenamr
Running setup.py egg_info ...
1
vote
1answer
171 views
Python: pip installs sub-packages in root dir
I have such structure:
setup.py
package
__init__.py
sub_package
___init__.py
sub_package2
__init__.py
If I install package via setup.py install, then it works as ...
0
votes
2answers
101 views
How to undo a Python setuptools --prefix path blunder
When I installed Python's setuptools I absent mindedly tacked on a --prefix path I had been using on another machine:
sh setuptools-0.6c11-py2.7.egg --prefix=/opt/python2.7.2
Now after this blunder ...
0
votes
1answer
178 views
Setuptools / distutils: Installing files into the distribution's DLLs directory on Windows
I'm writing a setup.py which uses setuptools/distutils to install a python package I wrote.
It need to install two DLL files (actually a DLL file and a PYD file) into location which is available for ...
0
votes
4answers
148 views
pip freeze captures the package name as if it was on python index site, but it is not. full path is needed
I installed a package from git hub:
pip install -e git+http://github.com/un33k/django-uuslug.git#egg=django-uuslug
Then I did:
pip freeze > req.txt
I get:
django-uuslug==0.1
Now if I do a ...
0
votes
1answer
251 views
How to install pip with Python 3?
I want to install pip. It should support Python 3, but it requires setuptools, which is available only for Python 2.
How can I install pip with Python 3?