pip Questions
3
I searched a bit but could not find a clear answer.
The goal is, to have two pip indexes, one is a private index, that will be a first priority. And one is the standard PyPI. The priority is there ...
Outlying asked 25/4, 2021 at 11:59
3
Using pip install on some large package doesn't show any progress report while downloading.
Using the -v, --verbose option doesn't do it and there doesn't seem to be any other relevant option.
Cuyler asked 25/12, 2013 at 9:18
17
Solved
I installed Pillow, and after I want to do:
from PIL import Image
I get the following error:
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/usr/lo...
Varion asked 16/8, 2014 at 13:37
3
I have a generic shell script used in all of the modules.
All of the modules install a common pip called common.
The script is something like this
common
utils
scripts
build
generic_build.sh...
10
Solved
I'm trying do from Cython.Build import cythonize and I get the message ImportError: No module named 'Cython', but I installed the Cython with the comand pip install Cython. What's wrong?
Python 3.5...
3
I am trying to generate requirements.txt for someone to replicate my environment. As you may know, the standard way is
pip freeze > requirements.txt
I noticed that this will list all the pac...
Petitioner asked 1/5, 2020 at 3:37
5
Solved
I am trying to install mongodb_engine with my python django application, however I am getting this error
Cannot find command 'git'
I am trying this command from mongodb documentation. http://dj...
Compossible asked 10/4, 2015 at 15:55
3
Solved
I have a couple projects that require similar dependencies, and I don't want to have pip going out and DLing the dependencies from the web every time. For instance I am using the norel-django packa...
Rambort asked 9/11, 2012 at 15:45
3
Solved
Package managers for JavaScript like npm and yarn use a package.json to specify 'top-level' dependencies, and create a lock-file to keep track of the specific versions of all packages (i.e. top-lev...
Interdict asked 5/10, 2018 at 12:25
18
Solved
I am trying to install the Scrapy package (among others) for python using pip. I have tried doing the installation using python 3 and python 2, I have installed/upgraded the setuptools like so: $ p...
6
I just switched from PyCharm to VSCode, and when I try to pip install X, I get the following message:
pip : The term 'pip' is not recognized as the name of a cmdlet, function,
script file, or ope...
Paction asked 19/4, 2020 at 20:53
5
Solved
Let me start by saying that I have searched for help this problem and gone through the numerous threads that I have found, and none of them have worked, or I wasn't able to understand what they are...
10
When I tried to install libraries using pip install, sometimes this error message come up.
ERROR: THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE. If you have updated the package ...
9
I am using a Python virtual environment to work on a project. After setting up my venv and pulling from git I tried to pip install -r requirements.txt but am getting the following error:
Collecting...
3
Solved
I`m using MacBook with M1 chip and seems like multiple things arent optimised for it.
pyodbc didnt work for me, so I wanted to use pymssql.
Though, I encountered this issue when I tried to run pip ...
3
I am trying to update my matplotlib in virtualenv and now it seems everything crashed :(
what I did till now is basically,
source ~/myenv/bin/activate
pip install -U matplotlib
I had previously...
Procurance asked 1/12, 2017 at 14:3
10
Solved
Recently I start to get ImportError: DLL load failed: error when I import different libraries (for example scikit-learn or scipy and some others).
My assumptions is that I have broken something whe...
Photoengrave asked 28/12, 2016 at 15:51
1
I want to install Spacy in the virtual environment. I created the virtual environment with python 3.9. Activated the environment. As per theSpacy tutorial when I tried to install Spacy in the...
Ensor asked 18/6, 2024 at 18:32
20
I'm trying to install embeddinghub on mac (tried pip3 install embeddinghub and pip3 install pandas embeddinghub protobuf), but I get the same error saying "could not build wheels for hnswlib, ...
9
When I try to create venv it throws this error:
Error: Command '['C:\\Users\\admin\\env\\Scripts\\python.exe', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.
It...
Rampart asked 16/10, 2021 at 8:51
4
Solved
Im trying to pip install a requirements file in my python3 environment using the following task
pip:
python3: yes
requirements: ./requirements/my_requirements.txt
extra_args: -i http://mypypi/w...
25
Solved
I successfully installed pytorch via conda:
conda install pytorch-cpu torchvision-cpu -c pytorch
I also successfully installed pytorch via pip:
pip3 install https://download.pytorch.org/whl/cpu/to...
1
I'm new to the Django world and I want to install it from pip into my windows but I get this error when installing:
C:\Users\xxxx>pip install django
Collecting django
**Could not install packag...
2
Solved
I have a three python projects A, B and C. Each depending on each other.
How can I now "clean up" my requirements.txt that only the high level
dependencies that are required at this "level" are...
Metatarsal asked 22/6, 2016 at 11:36
2
I've been trying to connect my databse to pgadmin4. I connected it successfully but now my heroku app returns internal server error. In order to debug this I do heroku logs -t and it returns Import...
Alpert asked 20/5, 2020 at 16:34
© 2022 - 2025 — McMap. All rights reserved.