Questions tagged [pip]

PIP (Package Installer for Python) is a package manager for the Python language.

92 questions
1
vote
0 answers

PIP3 Install Failing on RHEL 8 with SSL BAD AUTHENTICATION TYPE

I am trying to install packages with PIP on a newly created RHEL 8 server, with FIPS enabled and running openssl 1.1.1k, and am getting an error about a bad dh value. pip3 install --trusted-host pypi.python.org --trusted-host pypi.org --trusted-host…
awestover89
  • 131
  • 1
1
vote
1 answer

Installing pyobdc

I'm trying to install pyodbc using pip3 but getting the below error: [hvr@07EUW1HVRHAP02A ~]$ pip3 install pyodbc Collecting pyodbc Using cached…
pugazhendhi
  • 27
  • 1
  • 3
1
vote
1 answer

Python pip installing grpcio kills connections to my Google Compute Instance?

I'm seeing a strange issue when I try to install the Pip package "google-cloud-datastore" where once it starts building the dependent "grcpio" wheel, all TCP (including SSH) connections to the instance become unusable, and all subsequent SSH…
Al Longley
  • 131
  • 4
1
vote
0 answers

What is the differences between to install docker-compose by binary or by pip install

We have two option that we can use in order to install the docker-compose We already installed docker , and now we want to install docker compose on production environment One option is by binary docker-compose curl -L…
King David
  • 549
  • 6
  • 20
1
vote
1 answer

Cannot `pip install flask` in Python3.6 virtual environment

I'm trying to follow a MS DevOps tutorial here: https://microsoft.github.io/PartsUnlimitedMRP/pandp/200.1x-PandP-LocustTest.html I've tried Ubuntu and CentOS, both produce the exact same failure: (environment) [crimKidA@CentOS7 ~]$ pip install…
KidACrimson
  • 330
  • 1
  • 10
  • 26
0
votes
0 answers

How to query the `pip` command, to get the FQDM it will use?

Is there a way to query the pip command (or another way), to get the FQDN of the server pip will use (e.g., in pip install)?
boardrider
  • 949
  • 2
  • 18
  • 29
0
votes
2 answers

Django import error while installing Tacker via Devstack: No module named django.core.management

I am trying to install Tacker via Devstack. I am following this installation guide. I use same local.conf as in the guide. However, after running ./stack.sh, I see this error: Requirement already satisfied: pyperclip===1.7.0 in…
0
votes
0 answers

How to remove python-virtualenv RPM using commands that are run from an installing RPM?

I need to install virtualenv from an RPM. I do this from the RPM's post-install script, with the following: pip2 install pip --upgrade pip2 install virtualenv --upgrade However, the pip2 install pip now upgrades PIP to version 10, which throws the…
boardrider
  • 949
  • 2
  • 18
  • 29
0
votes
1 answer

Why is pip using deprecated settings?

My pip install is trying to contact the wrong server (a server I used in the past, but now deprecated): I see this because the installation of a package is timing out. Two questions: Where is pip getting the (wrong) configuration from? Definitely…
blueFast
  • 4,200
  • 13
  • 37
  • 54
0
votes
3 answers

Ansible pyenv virtualenv gives error for pip

I have ansible task - name: Install setuptools in virtual environment pip: name: setuptools-git virtualenv: "myenv" virtualenv_command: "/root/.pyenv/bin/pyenv virtualenv 2.7.13" But it gives error fatal: [localhost]: FAILED!…
Nilesh
  • 255
  • 1
  • 6
  • 18
0
votes
1 answer

pip installed under old version of python

I installed Python 2.6 and pip on centos 6.4. I also upgraded python to 2.7.6 and updated bashrc to reference 2.7.6 for the python command. Pip however, remains under 2.6 and any attempt to reinstall it with 2.7.6 just tells me there's nothing to do…
Fraser
  • 103
  • 1
  • 2
  • 6
0
votes
1 answer

Cannot upgrade pyhon-html5lib

on my Ubuntu 14.04 LTS when I run: dpkg -l python-html5lib I'm receiving: ||/ Name Version Architecture …
0
votes
1 answer

Ansible: Pip install directly from s3 using s3 module

How do I Pip install directly from s3 using s3 module in Ansible? with git I would: - name: Install module from git repo pip: name=\"git+git@bitbucket.org:MYORG/REPONAME.git\" executable=/usr/local/bin/pip2.7 sudo: yes Can I do the same with s3…
Gil Zellner
  • 183
  • 1
  • 8
0
votes
2 answers

Failed to install the ansible with pip

I tried to install ansible with the following commands: docker run -ti --rm ubuntu:14.04 bash echo "===> Updating cache..." && \ apt-get update && \ \ \ echo "===> Installing sudo..." && \ apt-get install -y sudo && \ …
0
votes
1 answer

PyPi Django installation incomplete

I've encountered an interesting issue, and haven't yet managed to solve it with Google. I'm using virtualenv+python3.5. After a number of ImportErrors, I came to a conclusion that my Django installation is incomplete. Here's a tree of the…
khvn
  • 111
  • 3