Questions tagged [pip]

pip is a tool for installing and managing Python packages

...such as those found in the Python Package Index. It's a replacement for easy_install.

301 questions
190
votes
8 answers

Find outdated/updatable pip packages

pip freeze shows me the packages installed, but how do I check against pypi which ones are outdated?
Xster
  • 2,845
  • 5
  • 24
  • 19
71
votes
4 answers

python3-pip installed but pip3 command not found?

I am testing a Python3 program in several computers. To do that, I need to install a library of Python with pip3. So first, I was installing python3-pip in each computer (everyone is running Kubuntu OS). Everything was OK, and then I installed the…
forvas
  • 883
  • 1
  • 7
  • 16
34
votes
3 answers

The script is installed in directory, which is not PATH

During the installation process of Jupiter Notebook using pip, it said that scripts were installed in a folder that is not on PATH. Can it cause any problems? How can I fix it? Here is full log: Installing collected packages: six, ipython-genutils,…
keddad
  • 669
  • 1
  • 8
  • 16
29
votes
6 answers

Cannot install python-pip with yum

I am trying to install python-pip in a centos7 docker container, but I think I may be missing some package or something. [root@aasdfasdfa /]# yum -y install python-pip Loaded plugins: fastestmirror, ovl base …
Alex Cohen
  • 393
  • 1
  • 3
  • 8
28
votes
3 answers

How to run pip in non-interactive mode?

Most of tools I'm using have some mode (often ON by default) where they ask me zero questions while running the command. apt-get is an example close to pip. There's -y option which makes it non-interactive. Is there any such option for pip? If…
vladimir
  • 457
  • 1
  • 5
  • 8
24
votes
3 answers

Run pip for python3 on Fedora

I can't run pip for python3 (3.4) on Fedora 22. Pip for python2.7 is installed on system by default and works fine. I install package python3-pip but can't run it. pip3, pip-3.4, python3-pip, python3 pip The above commands don't work for me and…
Denis Savenko
  • 343
  • 1
  • 2
  • 4
24
votes
10 answers

How to install pip and easy_install on CentOS

I tried to install pip and easy_install on my CentOS but could not find them. How can I install them? Also, I have two versions of Python, 2.4 and 2.7. How will pip make sure to link newly installed components with Python 2.7?
Mirage
  • 2,863
  • 8
  • 48
  • 66
21
votes
5 answers

installing wxpython via pip or easy_install

I am running into some problems installing wxpython using pip. Here is my current output: [myuserid]% sudo pip install wxpython Downloading/unpacking wxpython Downloading wxPython2.8-win64-devel-2.8.11.0-msvc9x64.tar.bz2 (7.2Mb): 7.2Mb downloaded …
dtlussier
  • 2,165
  • 2
  • 23
  • 28
18
votes
3 answers

How to fix "Permission Denied" in Git Bash in Windows 10?

Whenever I tried to run this command: python get-pip.py, git bash gave me this response: bash: /c/Users/Sergio Ley/AppData/Local/Microsoft/WindowsApps/python: Permission denied. I don't know how to fix this and have tried to search this up with no…
15
votes
4 answers

pip not working on hombrew python 2.7 install

I've installed python using homebrew and I can't invoke pip from the bash. I've tried amending my .bash_profile to include /usr/local/bin/python and /usr local/share/python to no avail. When I use the bash command: find / -name 'pip' The only…
YoungPadawan
  • 153
  • 1
  • 1
  • 9
14
votes
1 answer

pip - Get long description of uninstalled package?

For apt-based operating systems, there is an apt-cache show subcommand which shows everything known about a particular package, including version, dependencies, and long description. Although pip has a pip show subcommand as well, it only shows such…
ioistired
  • 153
  • 1
  • 9
13
votes
1 answer

How to install python-pip in CentOS7 Docker Container

I am trying to build a docker container that includes pip. I am on CentOS 7. Here is the fragment from running the docker build command: Step 3 : RUN yum -y install python-pip ---> Running in 25d1ba46e6dc Loaded plugins: fastestmirror Loading…
Be Kind To New Users
  • 749
  • 5
  • 14
  • 39
13
votes
1 answer

Re-scan python libraries after pip install in Visual Studio Code

Every time i install a python library using pip (e.g. pip install requests) i have to reload Visual Studio Code, so it starts scanning installed libraries (even when using the pip install-command from within the VS-Code-activated shell). If i don't…
Incubbus
  • 265
  • 3
  • 10
8
votes
3 answers

Extremely slow pypi package retrieval with i.e. pip

Finding python packages using tools such as pip or easy_install takes very long, up to ten minutes, on my local desktop running Ubuntu 12.10. The same procedures are lightning fast on my cloud servers. Things ruled out: The download of the package…
7
votes
2 answers

Why is pip not listed in easy_install on CentOS 6? Where to get it?

I am trying to install pip for python on CentOS 6. I thought of installing it through easy_install but it is not there. I tried to find easy_install with find command, but no luck. I tried to re-install python with yum and still not able to find…
tsatiz
  • 173
  • 1
  • 1
  • 5
1
2 3
20 21