Questions tagged [pipenv-install]
78 questions
1
vote
2 answers
How to fix pipenv error: Could not find a version that matches?
I have the following pipfile:
[[source]]
name = "pypi"
url = "${PYPI_ENDPOINT}"
verify_ssl = true
[dev-packages]
flask-shell-ipython = "==0.4.*"
ipython = "==7.4.*"
[packages]
boto3 = "==1.9.*"
statsd = "==3.2.1"
gunicorn =…

Ivan Petrushenko
- 43
- 6
1
vote
1 answer
There is Error While Installing twisted in pipenv
I was trying to install twisted in pipenv for my project But I came across this error I will be thanked if anyone help me. I am using python=3.8.2
I install the package by this command:
pipenv install twisted
Here's the error
Installing…

user13906674
- 96
- 7
0
votes
0 answers
pipenv throws Could not determine package name from
My pipfile contains multiple packages such as:
[packages]
flask = "==2.2.1"
flask_cors = "==3.0.10"
mymodule = {ref = "0.2.4", git = "https://github.com/myorg/mymodule-new.git"}
However, this results in Could not determine package name from…

Maven
- 14,587
- 42
- 113
- 174
0
votes
1 answer
Pipenv could not resolve dependencies, seemingly without indicating which dependencies couldn't be resolved
I'm trying to install the dependencies for a project that's working on a colleague's machine.
The Pipfile looks like:
Pipfile
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
aio-pika = "==7.2.0"
aiohttp =…

Caleb Jay
- 2,159
- 3
- 32
- 66
0
votes
0 answers
dateutil: No module named 'dateutil' error when Pandas installing using pipenv
I installed pandas usng
pipenv install pandas
command when i run my script getting errors as
ImportError: Unable to import required dependencies:
dateutil: No module named 'dateutil'
and checked pipenv graph command and got…

akhil viswam
- 496
- 9
- 24
0
votes
1 answer
Recover config.log after failed `pip install`
I'm trying to install (that is: compile) wxpython for Python 3.7.17 (Which I know is out of support but I have a module which works with nothing else and requires wxpython).
I'm trying to get everything set up with pipenv, on Kubuntu…

Zak
- 3,063
- 3
- 23
- 30
0
votes
0 answers
"pipenv install" fails installing Django but "pip install" command works fine
Unable install django using "pipenv install django" and "python -m pipenv install django". But "pip install django" works.
Traceback (most recent call last):
File…

Abu Sahama
- 11
- 2
0
votes
0 answers
Pipenv just keep locking depedencies and don't finish
There is a lot of time since last time I deployed an app that I maintain, and in the last time I not saved the Pipfile.lock and some depedencies in my Pipfile have specific version and others have just a "*" symbol. Now When I try to run pipenv…

Leonardo Furtado
- 91
- 1
- 9
0
votes
0 answers
pipenv installation issue in Windows 10
click to see the error
I am trying to install pipenv in my windows 10 for my PyCharm. As you can see, the requirements are all fulfilled. But there is an error. WARNING: Failed to write executable - trying to use .deleteme logic
ERROR: Could not…
0
votes
1 answer
Error with pipenv in Dockerfile: No such option: --requirements Did you mean --quiet?
I am trying to build a docker image to run an application, the Dockerfile is as follows:
#Pull a image
ARG BASE_IMAGE=python:3.9.0-slim-buster
FROM ${BASE_IMAGE} AS requirements-image
# set working directory
WORKDIR /usr/src/app
# set environment…

Diego L
- 185
- 1
- 9
0
votes
0 answers
pipenv: "python-dotenv" reappearing after every pipenv install
every time i run pipenv install it will reinstall python-dotenv.
I was using python-dotenv for a while, but I want to use django-dotenv instead.
So, I want to remove it, hence i execute:
$ pipenv uninstall python-dotenv
$ pipenv graph | grep…

Soraphis
- 706
- 7
- 26
0
votes
1 answer
pipenv install fails in Django project
i have a django project and when i tried to run python manage.py migrate i git this error
django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more…

ali nasser
- 23
- 2
0
votes
0 answers
pipenv install of packages failing: pointer is missing a nullability type specifier (_Nonnull, _Nullable
I’m having this weird issue with a virtual environment that is making me nuts
This is what I’ve tried so far. Maybe more options, but
Changed ipdb to dev packages
Updated pipfile
#### EXPLODED HERE ####
pipenv update
pipenv install
brew update
brew…

The Dan
- 1,408
- 6
- 16
- 41
0
votes
0 answers
no errors thrown when running pipenv install, but running a python manage.py migrate after results in errors
ModuleNotFoundError: No module named 'django_on_heroku'
I've got a new machine at work and I'm attempting to run an old project which I've cloned. Cannot get the api server up and running.
(ps, my first stack overflow post -- sorry if the format…

Tom
- 1
0
votes
0 answers
How to reuse existing module global installations in virtual environments using pipenv?
Recently I have been struggling with storage issues. I discovered that virtual environments are part of the problem.
I have to pipenv install --dev ipython for each virtual environment, and often also pipenv install many big libraries. I was trying…

G M
- 20,759
- 10
- 81
- 84