pip is a replacement for easy_install, intended to be an improved Python package installer.

learn more… | top users | synonyms

0
votes
0answers
21 views

Python pip installation easy_install not recognized

i installed setuptools from here: pypi.python.org/pypi/setuptools i go to my command line and enter easy_install but it says easy_install is not recognized, anyone knows what is happening here? ...
2
votes
1answer
26 views

How to install various files other than Python code using Python packages?

My Python project includes some manpages and bash completion script. I want those to be installed when user installs a package with, for example, pip install mypackage. How do I do that? I only came ...
1
vote
0answers
23 views

pip installation issue getpip file

I am trying to install pip folowing this tut: http://dubroy.com/blog/so-you-want-to-install-a-python-package/#installing i copy the code from getpip.py, save it and run it with python, but the ...
0
votes
1answer
28 views

newbie installing pip distribute

I am trying to install distribute which is a required for installing pip(needed to use django-selectable functions). I am following this tutorial. I downloaded distribute and ran distribute_setup.py ...
0
votes
0answers
13 views

How to get the installed package info (path, Entry module) of Python?

I want to get the installed packages that in my project have not be used. Get the Installed packages (Include these dependences). Traversal all imported modules that in my project and it couldn't ...
0
votes
1answer
17 views

pip fails with HTTP error 503 while getting https://pypi.python

I'm trying to set up a build machine using Jenkins on an Amazon EC2 instance. It's building python, and using the shiningpanda plugin to set up a virtualenv for the build. Every time I run the build ...
2
votes
2answers
21 views

What's the difference between direct pip install and the requirements.txt?

I'm confused. I've got a working pip install command (meaning: it installs a version of a library from Github which works for me), and I have a non-working (meaning: it installs a version of a ...
0
votes
0answers
12 views

How to install/use django-inlinecss

I need to use this plugin plugin in my app, but i have no idea about how to install and use it. So far, I have found this fork of the mentioned plugin that adds a setup.py script. After issuing the ...
1
vote
1answer
32 views

Python 3.3 pandas, pip-3.3

So, I'm trying to install pandas for Python 3.3 and have been having a really hard time- between Python 2.7 and Python 3.3 and other factors. Some pertinent information: I am running Mac OSX Lion ...
0
votes
0answers
10 views

Pymc not working after compilation

I'm trying to install pymc. I used the info given here I compiled them myself (according to section 2.4 in the documentation). Though I get this error when trying to use it: What is going wrong ? ...
1
vote
1answer
24 views

How to state in requirements.txt a direct github source

I've installed a library using the command pip install git+git://github.com/mozilla/elasticutils.git which installs it directly from a Github repository. This works fine and I want to have that ...
0
votes
0answers
11 views

python pip config file - custom scripts and library installation paths

I am trying to get pip to respect some configurations, such as location of the scripts and library location. So, every time I install using pip at the moment, I do something like: pip install ...
0
votes
1answer
25 views

How to install PIL with pip+mingw in windows?

I am trying to install PIL using pip and mingw. However it fails as follows. Downloading/unpacking PIL Running setup.py egg_info for package PIL WARNING: '' not a valid package name; please use ...
0
votes
1answer
38 views

How to install numpy with pip+mingw in windows?

I have got pip+mingw working in windows. I tested it with pip install cython and it works perfectly. pip install numpy fails however with a long list of error messages. What is the correct way ...
0
votes
3answers
45 views

Using pip in windows

I installed distribute and pip using the links I have just given. I also installed the Microsoft Visual C++ 2008 redistributable package. However when I try to use pip.exe I get error: Unable to ...
2
votes
1answer
39 views

Python pip --index-url Not Limiting Repository Search

I'm trying to instruct pip to install packages using only a local repository (on a different server in my internal network). The requirement is that remote repositories (like pypi) should never be ...
0
votes
2answers
33 views

“'module' object has no attribute 'HTTPSConnection'” when try to use pip in virtualenv

I get this error when I try to use pip in virtualenv.It works nice when I deactivate environment. What could be wrong? I use python 2.7 in CentOS.
0
votes
1answer
39 views

Installing to the correct version of python on OSX

My Mac (which I am just starting to use for a development machine to stretch my wings a little from the Windows world) has 2 system-installed versions of Python (python25-apple and python26-apple) as ...
0
votes
1answer
30 views

Windows Python Virtualenv Install PIL and MySQL

In windows I'm having trouble installing things such as PIL and MySQL inside my virtualenv for Python 2.7 64-bit. I've downloaded extensions from here: http://www.lfd.uci.edu/~gohlke/pythonlibs/ and ...
0
votes
1answer
29 views

pip: Could not find an activated virtualenv (required)

I am trying to instal virtualenv and/or virtualenvwrapper on a mac osx 10.8.3 I have been fighting with python for the last two days. Finally I was able to install python 2.7.4 using brew. Before I ...
0
votes
2answers
41 views

Pip not installing nose package

First off, let me say I'm a newbie to the Unix command line, so forgive me if anything sounds naive. I've installed pip on my machine and I'm trying to use it to install nose. I have a nose zip file ...
0
votes
0answers
47 views

Installing uwsgi with plugins using 'pip'

I installed uwsgi using pip install uwsgi. When I run uwsgi, I get a couple of errors. The command I'm running is uwsgi --master --emperor /etc/uwsgi/apps-enabled --die-on-term --uid www-data --gid ...
0
votes
1answer
36 views

Why does PIP convert underscores to dashes

I am trying to install a Pyramid app -- let's say test_app. inside a virtual environment and it is getting installed as test-app (pip freeze output shows it test-app==0.0). Because of this, I can not ...
0
votes
0answers
30 views

How to use pip install python packages locally like npm does

Say I have a project named Foo, and and want to install requests package locally for this project. What I am expecting is some structure similar to this: Foo/ |-main.py |-requirements.txt |-README.md ...
0
votes
2answers
70 views

pip issue installing almost any library

I'm having a difficult time using pip to install almost anything. I'm new to coding, so I thought maybe this is something I've been doing wrong and have opted out to easy_install to get most of what I ...
0
votes
2answers
47 views

How to use pip with multiple instances of python

I recently installed python3 only to realize that mysql-python as well as many other modules were not well supported with it yet. So I changed the path in my bashrc file to point to an installation ...
0
votes
1answer
21 views

Openshift pip uninstall old packages versions

There are some bugs in django-registration0.8, that's why it installed 0.9 version manually throw ssh and also places newer version of registration directly near my scripts (under registration ...
0
votes
0answers
13 views

pip install and python setup.py behave differently

I have a setup.py that compiles some c code using gcc. It then installs the binary. When using python setup.py install, the binary runs just fine. When using pip install for this package, I get ...
1
vote
0answers
16 views

Moved my project dir, where did my dependencies go?

I moved my project directory to a new location. Now, when I try and run my application locally, I receive an "ImportError: No module named flask" Here is my work flow: $ mv my_project/ ~/new_dir/ $ ...
0
votes
1answer
49 views

How to install python packages on python2.7 using yum

Here is my question: How to install python packages on python2.7 using yum, as yum by default installs packages on 2.4 (the default python on redhat). OR How can I install yum on python2.7 to make ...
0
votes
1answer
24 views

How to relocate python installtion installed as non-root user on oner server to another server in different directory?

We have two linux servers. One is on private network which does not have internet access. Other is on public network which has internet access. Both the servers run the same RHEL-5 OS. On as server ...
0
votes
1answer
64 views

Windows - pip install with mingw - Fails - cc1.exe: error: unrecognized command line option '-mno-cygwin'

I am using Python27 My PATH contains C:\MinGW\libexec\gcc\mingw32\4.6.2 C:\MinGW\bin C:\MinGW\msys\1.0\bin C:\Python27\ C:\Python27\Scripts My PYTHONPATH contains C:\Python27 ...
4
votes
2answers
79 views

Python newbie - PIP / invalid syntax error

Ok, totally newbie to programming and python. Running Windows 7, python 2.7 x64. I am trying in install dateutil package using pip. I installed pip, numpy and pandas... which were pretty ...
0
votes
1answer
25 views

location of pip-build-root with homebrew

I installed the python framework using homebrew and when I install django, I am forced to install version 1.5.1, but I want to work with 1.4.3. When I try to uninstall and reinstall it gives me this ...
2
votes
3answers
55 views

How to check if my Python has all required packages?

I have a requirements.txt file with a list of packages that are required. Is it possible to find out whether all the packages mentioned in the file are present. If some packages are missing, how to ...
0
votes
1answer
168 views

python feedparser ImportError: No module named feedparser

I receive an error when I attempt to include the feedparser library into the interactive Python environment: >>>> import feedparser Traceback (most recent call last): File ...
6
votes
2answers
216 views

virtualenv doesn't create PYTHONPATH / pip installed packages don't work

I'm using virtualenv 1.9.1 on cygwin under win 7. Each virtualenv is created without any options (other than the directory name, obviously). There are no fancy customisations. All virtualenvs are ...
1
vote
0answers
36 views

using pip to install packages locally in spite of satisfied global requirements

I am trying to use pip to install a package locally in ~/.local. The problem is that the package (in an older version) is already available globally on the system. Even though the global python ...
-1
votes
1answer
21 views

Need help installing python dependencies using pip

My situation: I need to have same dependencies that I have on my computer on another server. So I did this on my computer: pip freeze > requirements.txt Than on a remote server: I want to ...
2
votes
1answer
28 views

Python module paths different after installing through pip

Suppose I am working on a python project named mymodule, and that I have the following directory structure: mymodule/ README setup.py mymodule/ __init__.py foo.py bar.py ...
1
vote
1answer
38 views

PIP install my OS project

I've created an open source project and tried to register it with PIP so people can use pip install. Unfortunately I can't seem to get it work. Here are the commands I've tried: Created a setup.py ...
1
vote
2answers
42 views

How to link a CKAN installation in Vagrant to a cloned repo in the host OS?

I'm using the chef-ckan cookbooks from Vitor Baptista to setup a CKAN installation for Vagrant. Everything is working fine, but I can't find the way to make CKAN load the source code from my host OS ...
0
votes
1answer
31 views

Local install / uninstall of PyQt (pip interface?)

The installation instructions for PyQt say: python configure-ng.py make make install I usually work on a personal virtualenv environment, and pip install -e <path_to_package_source_folder> ...
0
votes
0answers
20 views

Uninstall setuptools from a virtualenv

Inside a virtualenv, I have pip, distribute and setuptools installed, and using yolk -l give this output for the relevant packages: Python - 2.7.3 - active development ...
1
vote
2answers
65 views

Can pip install a python egg via a local package tar.gz file

In my dev environment, due to some networking problems, when I run: (my-virt-env)$ pip install lxml It always fails due to: Downloading/unpacking lxml Downloading lxml-3.1.2.tar.gz (3.3Mb): ...
1
vote
0answers
10 views

How would one pip freeze/list all virtualenvs?

I have multiple virtualenvs on a single server and I would like to perform 2 operations on all of the virtualenvs. pip freeze pip list --outdated Is there an automated solution/command that will ...
0
votes
0answers
55 views

I screwed up the system version of Python Pip on Ubuntu 12.10

I wanted to update pip on my main install of Python, specifically to get the list command. Which also includes the list- updates capability. So I ran: sudo pip install --upgrade pip All looked ...
1
vote
1answer
91 views

compatible pip version for python 3.3.1

Brief overview on what I am trying to do Step 1 - Python installed successfully- Version - Python 3.3.1 Step 2 - Either download easy_install or pip. I am going with pip. Since pip doesn't have a ...
0
votes
0answers
23 views

Setting up pip in Windows 7

I am using Python 2.6, Python 2.7 and Python 3.3. I had added them in path by renaming the python.exe file to pythonxx.exe i.e. python26.exe, python27.exe and python33.exe and using them ...
0
votes
0answers
21 views

Installing a package to a specific relative directory with pip

I have several packages that I need to install in a directory like this: ../site-packages/mynamespace/packages Mainly, this is for historical reasons so imports don't break. There are several such ...

1 2 3 4 5 18