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.

308 questions
206
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
  • 3,025
73
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
  • 903
43
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
  • 789
33
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
  • 527
30
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 …
28
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…
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
  • 3,003
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,195
18
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
  • 315
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…
15
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
  • 163
14
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…
11
votes
5 answers

Ansible installed via pip3, but Ansible commands not found

I have installed Ansible via pip3, but I can't find the Ansible commands (ansible --version, ansible-playbook, etc.) Here's the listing that shows that Ansible is installed via pip3: :~# pip3 list | grep ansible DEPRECATION: The default format will…
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…
1
2 3
20 21