Questions tagged [pipenv-install]
78 questions
0
votes
1 answer
Pipenv Install command not able to find compatible version
I am trying to install pyarrow 4.0.0 in my project. Python version is 3.6.
install pyarrow==4.0.0
I am getting the following error
ERROR: Could not find a version that satisfies the requirement pyarrow~=4.0.0 (from versions: 0.9.0, 0.10.0, 0.11.0,…

user9200165
- 61
- 1
- 5
0
votes
2 answers
How to install pipenv on Windows?
I need to install pipenv on Windows and I use this tutorial. However I get an error. I use Python 3.9.13 and pip 22.3. I installed pipenv with this command pip install pipenv, then I have to do this:
but I didn`t get it. So I passed it and entered…

party
- 55
- 1
- 5
0
votes
0 answers
Categories of virtual environments for Pipenv
I want to be able to use categories of virtual environments (venvs) when creating a venv with Pipenv, where each category will contain a set of default packages to be installed with the creation of the corresponding venv.
For example, I want to have…

Xxxo
- 1,784
- 1
- 15
- 24
0
votes
0 answers
How to install swagger_client into pipenv, python
I want to install a swagger client to use the ESCO API, https://ec.europa.eu/esco/api/doc/esco_api_doc.html
When I install it locally with pip, it runs fine and I have it available, but I haven't been able to run in pipenv or poetry in order to use…

The Dan
- 1,408
- 6
- 16
- 41
0
votes
0 answers
Setup pipenv in a multiple Python version system
I have a repo with a project whose environment is created with pipenv, in python 3.9. On my own machine I have installed both python 3.10 (main ubuntu) and 3.9. The problem is that the project is for python 3.9, because each time I try to install or…

Matteo Possamai
- 455
- 1
- 10
- 23
0
votes
0 answers
Trying to install numpy via pipenv but I receive this message "Locking Failed!"
I have tried to install numpy via pipenv, I can see here Installation Succeeded after that I got this
Pipfile.lock not found, creating...
Locking [packages] dependencies...
Building requirements...
Resolving dependencies...
Locking…

Majidx94x
- 24
- 3
0
votes
0 answers
pip 20.3.4 (python 2.7): Command "python setup.py egg_info" failed with error code 1
I'm trying to install library on app built with python 2.7 but getting the same error:
pipenv install newrelic==5.22.1.152
Installing newrelic==5.22.1.152...
Adding newrelic to Pipfile's [packages]...
✔ Installation Succeeded
Pipfile.lock (3fb6a7)…

domanskyi
- 701
- 1
- 6
- 19
0
votes
0 answers
pipenv: pdfkit not found when running FastAPI app
I've been developing an API using FastAPI and pipenv to manage my virtual environment. To start my testing setup, I use the following commands on the console:
pipenv shell
uvicorn backend:app --reload
The API starts after a couple of seconds and…

Eddysanoli
- 481
- 2
- 8
- 17
0
votes
1 answer
create virtual environment using pipenv
i want to have two version of a module, one version in pip(e.g:newer version) and the other(e.g: older version) in pipenv, but when i install a package using pipenv, it will also works with pip, i don't know how to create a different environment…

amirhossein
- 27
- 8
0
votes
1 answer
Problem upgrading django 2.2.27 to 2.2.28 on Mac
I have a Django application that I'm trying to upgrade the django module from 2.2.27 to 2.2.28 to close a SQL injection attack vector. I'm running this on a recent intel Mac with a current OS, Python 3.7.7, and the installation and package…

writes_on
- 1,735
- 2
- 22
- 35
0
votes
1 answer
Unable to use pipenv to install: ImportError: cannot import name 'InstallRequirement' from 'pip_shims.shims'
Since a few hours I had issues with installing dependencies via pipenv. I decided to recreate my environment again and start from scratch, using a different python version (3.8.9). I'm now unable to even install any packages at all, and retrieve the…

pymat
- 1,090
- 1
- 23
- 45
0
votes
1 answer
Unable to install Torch with pipenv
I tried following this tutorial after not being able to lock with pipenv install torch I am using Linux Mint 20.3 una
pipenv install --extra-index-url https://download.pytorch.org/whl/cu113/ "torch==1.10.1+cu113"
caused this problem after a long…

Ryan
- 356
- 1
- 6
- 26
0
votes
0 answers
Python pipenv fails to install libraries?
My pipenv environment refuses to install various python libraries, citing a problem with the ssl certificate, any solutions out there?
Here is the error message:
PS C:\Users\NAME\OneDrive\Documents\GitHub\mainsite> pipenv install django
Installing…

Derek Wu
- 1
0
votes
0 answers
Can't install django project dependencies using pipenv install
I want to install Django project in fresh ubuntu 20.04.
The project requires python3.9, so I installed python3.9 using sudo apt install python3.9 python3-pip then I installed django using pip.
Now I want to install the project dependencies using…

Mahdi Jafari
- 347
- 6
- 22
0
votes
1 answer
ModuleNotFoundError: No module named 'dj_rest_auth'
I don't get why I am getting this problem I followed most the steps to the guide in installing: https://dj-rest-auth.readthedocs.io/en/latest/installation.html
Except that I used pipenv install.
However, python manage.py migrate gave me this error:
…

Ryan
- 356
- 1
- 6
- 26