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...
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. ...
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...
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...
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. ...
- Modified
- 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...
- Modified
- 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...
- Modified
- 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...
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. ...
- Modified
- 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...
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...
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...
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...
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
- Modified
- 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...
- Modified
- 27 Oct at 20:39
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...
- Modified
- 31 Aug at 08:51
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...
- Modified
- 13 Dec at 10:19
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
- Modified
- 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
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...
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...
- Modified
- 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...
- Modified
- 15 Jan at 17:43
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...
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_...
- Modified
- 6 Dec at 07:9