tagged [pip]

How do I search for an available Python package using pip?

How do I search for an available Python package using pip? I would like to be able to search for an available Python package using `pip` (on the terminal). I would like a functionality similar to `apt...

25 Jul at 00:5

How to start Spyder IDE on Windows

How to start Spyder IDE on Windows I downloaded spyder using the `pip install spyder` in my windows 10 32-bit operating system, but i dont see any desktop icons or exe files to start running the IDE. ...

24 Jul at 14:8

how to use python2.7 pip instead of default pip

how to use python2.7 pip instead of default pip I just installed python 2.7 and also pip to the 2.7 site package. When I get the version with: It shows: How do I use the 2.7 version of pip located at:

8 Oct at 21:5

Zsh: Conda/Pip installs command not found

Zsh: Conda/Pip installs command not found So I installed and everything is working. After I installed it I decided to switch to `oh-my-zsh`. I am now getting: when trying to use `pip` or `conda` insta...

25 Nov at 07:56

Dealing with multiple Python versions and PIP?

Dealing with multiple Python versions and PIP? Is there any way to make `pip` play well with multiple versions of Python? For example, I want to use `pip` to explicitly install things to either my sit...

11 Mar at 09:54

pip install access denied on Windows

pip install access denied on Windows I am trying to run `pip install mitmproxy` on Windows, but I keep getting access denied, even with `cmd` and `PowerShell` using the `Run as Administrator` option. ...

10 May at 13:56

'pip' is not recognized

'pip' is not recognized I tried to install `PySide` but I got error from the powershell as follows: ``` pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file, or operab...

7 Jan at 03:15

pip connection failure: cannot fetch index base URL http://pypi.python.org/simple/

pip connection failure: cannot fetch index base URL http://pypi.python.org/simple/ I run `sudo pip install git-review`, and get the following messages: ``` Downloading/unpacking git-review Cannot fet...

17 Nov at 18:14

Can I force pip to reinstall the current version?

Can I force pip to reinstall the current version? I've come across situations where a current version of a package seems not to be working and requires reinstallation. But `pip install -U` won't touch...

23 Oct at 17:54

How to install pip in CentOS 7?

How to install pip in CentOS 7? CentOS 7 EPEL now includes Python 3.4: `yum install python34` However, when I try that, even though Python 3.4 installs successfully, it doesn't appear to install pip. ...

16 Sep at 21:24

"Could not find a version that satisfies the requirement opencv-python"

"Could not find a version that satisfies the requirement opencv-python" I am struggling with Jetson TX2 board (aarch64). I need to install python wrapper for OpenCV. I can do: But I cannot do: Is this...

25 Jul at 04:27

Pip "Could not find a version that satisfies the requirement pygame"

Pip "Could not find a version that satisfies the requirement pygame" When I try to install PyGame with:`pip install pygame` it says > Collecting pygameCould not find a version that satisfies the requi...

13 Nov at 19:5

How do I install Python packages on Windows?

How do I install Python packages on Windows? I'm having a hard time setting up python packages. EasyInstall from [SetupTools](http://pypi.python.org/pypi/setuptools) is supposed to help that, but they...

24 Nov at 23:17

How to upgrade disutils package PyYAML?

How to upgrade disutils package PyYAML? I was trying to install which has a dependency on . In my Ubuntu machine installed version is 3.11. So I used the following command to upgrade : `sudo -H pip3 i...

19 Apr at 01:59

What is the purpose of "pip install --user ..."?

What is the purpose of "pip install --user ..."? From `pip install --help`: The documentation for `site.USER_BASE` is a terrifying wormhole of interesting *NIX subject matter tha

25 Feb at 18:58

ImportError: No module named Crypto.Cipher

ImportError: No module named Crypto.Cipher When I try to run app.py (Python 3.3, PyCrypto 2.6) my virtualenv keeps returning the error listed above. My import statement is just `from Crypto.Cipher imp...

How do you uninstall the package manager "pip", if installed from source?

How do you uninstall the package manager "pip", if installed from source? I was unaware that pip could be installed via my operating system's package manager, so I compiled and installed pip via sourc...

How do I update/upgrade pip itself from inside my virtual environment?

How do I update/upgrade pip itself from inside my virtual environment? I'm able to update pip-managed packages, but how do I update pip itself? According to `pip --version`, I currently have pip 1.1 i...

How do I install the yaml package for Python?

How do I install the yaml package for Python? I have a Python program that uses YAML. I attempted to install it on a new server using `pip install yaml` and it returns the following: Ho

18 Jan at 21:3

PIP 10.0.1 - Warning "Consider adding this directory to PATH or..."

PIP 10.0.1 - Warning "Consider adding this directory to PATH or..." Did some research on this and it seems like some sort of recurring issue. One fi

22 Apr at 13:39

Where is pip cache folder?

Where is pip cache folder? Where is the Python pip cache folder? I had an error during installation and now reinstall packages using cache files. Where is that directory? I want to take a backup of th...

11 Oct at 08:13

Not able to install Python packages [SSL: TLSV1_ALERT_PROTOCOL_VERSION]

Not able to install Python packages [SSL: TLSV1_ALERT_PROTOCOL_VERSION] I am trying to install a Python library using `pip`, getting an SSL error: ``` ~/projects/base  pre-master± pip install xdict C...

21 May at 10:40

Reference requirements.txt for the install_requires kwarg in setuptools setup.py file

Reference requirements.txt for the install_requires kwarg in setuptools setup.py file I have a `requirements.txt` file that I'm using with Travis-CI. It seems silly to duplicate the requirements in bo...

How to install Python package from GitHub?

How to install Python package from GitHub? I want to use a new feature of httpie. This feature is in the github repo [https://github.com/jkbr/httpie](https://github.com/jkbr/httpie) but not in the rel...

7 Mar at 10:39

How can I install Python's pip3 on my Mac?

How can I install Python's pip3 on my Mac? I'm trying to install pip3, but I'm not having any luck. Also, I tried `sudo install` and it did not work. How could I install pip3 on my Mac? ``` sudo easy_...

6 Dec at 07:9