Questions tagged [pip]

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

92 questions
0
votes
1 answer

amazon linux installation of rpy2 fails

the installation of rpy2 an amazon linux via sudo pip-2.7 install rpy2 fails with In file included from ./rpy/rinterface/_rinterface.c:58:0: ./rpy/rinterface/_rinterface.h:8:15: fatal error: R.h: No such file or directory compilation…
0
votes
2 answers

Error while installing with Python "pip": Cannot fetch index base URL http://

I am trying to install a local version of ScrumDo for testing. Only then I come to the point in my installation that I have to run: source bin/activate pip install -r requirements.txt I get the error: Downloading/unpacking…
0
votes
0 answers

Can't get PyGObject running in my alpine docker image

I can't get the Python:Alpine Docker image to install all my required PIP libraries. Unfortunately installing PyGObject is failing all the time and I can't get it running. Building wheel for PyGObject (pyproject.toml): started Building wheel for…
David
  • 159
  • 8
0
votes
1 answer

AWX execution environment pip error ResolutionTooDeep: 2000000

I've been building an execution environment for my awx for a while now and never got any kind of problem, but now I am trying to recreate the same EE I created 1 month ago, and it does not work anymore. It used to take just 15 minutes to build the…
Jose
  • 21
  • 1
  • 2
0
votes
0 answers

Install pip3 on new Ubuntu Server 22.04 install (Raspberry Pi)

I have just installed Ubuntu Server 22.04 LTS on my RPi, and I cannot for the life of me get pip3 to install. (It should already be there, no?) Here's my /etc/os-releasse: PRETTY_NAME="Ubuntu 22.04…
0
votes
1 answer

'pip3 freeze' and 'sudo pip3 freeze' are different

On my system (Raspbian Buster, raspberry pi CM4), packages installed with 'pip3 install ' are not available when I run 'sudo python3': $ pip3 freeze |grep numpy numpy==1.21.5 $ sudo python3 Python 3.7.3 (default, Jan 22 2021, 20:04:44) [GCC 8.3.0]…
0
votes
1 answer

Centos 7.9 python3 cant find modules installed via yum

My stub python3 program cannot find the "pytz" module: [me@mybox]$ uname -a Linux portal2 3.10.0-1160.53.1.el7.x86_64 #1 SMP Fri Jan 14 13:59:45 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux [me@mybox]$ cat /etc/redhat-release CentOS Linux release…
0
votes
1 answer

pip install mysqlclient on cloudlinux

I can't install mysqlclient on my cpanel cloudlinux server. It show this issue when i activate the project source and trying to install mysqlclient. Collecting mysqlclient Using cached mysqlclient-2.1.0.tar.gz (87 kB) Preparing metadata…
0
votes
1 answer

Strange ERROR: Could not find a version... during pip install

Any idea about this strange error: ERROR: Could not find a version that satisfies the requirement pycrypto==2.6.1 (from versions: 2.0.1, 2.1.0, 2.2, 2.3, 2.4, 2.4.1, 2.5, 2.6, 2.6.1) ERROR: No matching distribution found for pycrypto==2.6.1 It is…
mahyard
  • 237
  • 3
  • 11
0
votes
1 answer

Upgrade python 2 to 3.8.8 on suse Linux and Install pip3

I have Python 2.9 on my suse-linux machine (SUSE Linux Enterprise Server 12 SP1). I have upgraded it to Python 3.8.8. When I try to install pip using zypper install python3-pip It says python3-pip not found. I am afraid that python3 is not…
Jack
  • 1
  • 2
0
votes
1 answer

remotely installing python and pip packages

I'm trying to install python with pip packages remotely on an Azure VM using powershell. The script deployed to the VM: Start-Process 'F:\python-3.9.5-amd64.exe'-ArgumentList ("/passive", "InstallAllUsers=1", "PrependPath=1", "Include_test=0",…
VLCboy
  • 5
  • 1
  • 3
0
votes
3 answers

pip not working on ubuntu 18, how to fix that?

ubuntu@ip-172-31-18-233:my_folder$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.5 LTS Release: 18.04 Codename: bionic I installed pip using: sudo apt install python-pip The python…
uday
  • 352
  • 10
  • 30
0
votes
0 answers

Pip packages updated log

A few days ago I updated all pip packages on Ubuntu 20.04 with this command: pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U Does exists any way to see previous and present versions of any of them?…
Paster
  • 1
0
votes
2 answers

how to install certbot on Amazon Linux 2

I have an EC2 VM running Amazon Linux release 2 (Karoo) How can I get certbot? It comes with the awscli tools installed, which seem to be incompatible with the certbot in epel: $ sudo bash # yum install -y epel-release # yum-config-manager --enable…
Rich
  • 704
  • 14
  • 30
0
votes
1 answer

how can I ask pip (python package installer) to use different proxy servers for different urls?

I am currently in the following situation: my company has a proxy server for all external sites, but all internal hosts are direct connect only. Accessing them through the proxy will result in a proxy error. We have an internal pypi (added as extra…
Stefano Borini
  • 251
  • 1
  • 5
  • 11