Questions tagged [pipenv-install]

78 questions
1
vote
0 answers

Why does setuptools create egg-info for both my project and for "UNKNOWN"

I'm using the flat source model of project organization, in that pyproject.toml and setup.py live at the same level as sampleproj source directory. sampleproj/ LICENSE.md pyproject.toml README.md sampleproj/ main.py …
b-jazz
  • 859
  • 1
  • 7
  • 16
1
vote
0 answers

Can't install a single dependency or activate virtualenv using pipenv

I have seen some similar questions but none of those answers fixed my problem. So the thing is, i installed pipenv and tried to use it to be able to create a pipefile, but i can't, i also got one pair of pipefile and pipefile.lock and tried to…
Lauz
  • 11
  • 4
1
vote
1 answer

errors while running pipenv on ubuntu

I want to run pipenv install on my ubuntu machine with python3.10 but I get those errors when running the command: Installing dependencies from Pipfile.lock (17eb3b)... Traceback (most recent call last):▉▉▉▉▉ 0/25 — 00:00:00 File…
sirzento
  • 537
  • 1
  • 5
  • 23
1
vote
0 answers

Difference between and

I am trying to migrate from pip to pipenv and have my projects running on a pipenv environment. The steps I'm taking to set up a pipenv environment are listed below: Create a folder name "Project" & set the dir to "Project" pip freeze >…
user9532692
  • 584
  • 7
  • 28
1
vote
2 answers

pipenv only updates dev dependencies in Pipfile.loc file ignoring default packages

I have started using pipenv to manage my python dependencies and it looks like Pipfile.lock is failing to update default packages. Pipfile [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [packages] cerberus =…
Anvesh
  • 607
  • 1
  • 5
  • 19
1
vote
2 answers

Could not install 'pip install pipenv' on windows 10 due to ERROR: Could not install packages due to an OSError: [WinError 2]

I could not install pipenv by using "pip install pipenv" It always says "ERROR: Could not install packages due to an OSError: [WinError 2] The system cannot find the file specified: 'C:\Python310\Scripts\pipenv.exe' ->…
marceline
  • 343
  • 2
  • 12
1
vote
2 answers

how can i solve this pipenv install error - django project on vscode

I'm trying to create a platform website with login, CRUD etc. by following a course from Mosh and am stuck on [Part 1 of the Django class -> Django ORM -> 3-Resetting the Database] On this class, Mosh wants to make sure that we are on the same page,…
Johnny_Art
  • 11
  • 1
  • 2
1
vote
1 answer

Can I upgrade an individual Python package?

Project specified python version: 3.7.9 urllib3 version from Pipfile.lock: "version": "==1.25.11" Due to a security problem I want to update urllib3 to ">=1.26.5" As this comes with Python, and we can't upgrade python right now I wanted to bump it…
alichur
  • 925
  • 7
  • 19
1
vote
2 answers

When trying to run amplify push why is it looking in the wrong location for python

I have an AWS Amplify project and am trying to add lambda functions using python 3.8 runtime. I initially had Python 3.9 installed, however the lambda functions would only support 3.8 So I uninstalled 3.9 and installed 3.8 Now when I run 'Amplify…
MRDJR97
  • 818
  • 2
  • 10
  • 27
1
vote
0 answers

no module named 'pip._vendor.packaging'

I have been trying to run this command pipenv install for a python file that requires python 3.8.7. It proceeds to give the error from pip._vendor.packaging.utils import canonicalize_name. no module named 'pip._vendor.packaging. I have installed…
Xihken
  • 11
  • 2
1
vote
0 answers

Locking Failed! with pipenv lock --clear

So everything was working correctly until I tried to install the "requests" library for flask. In my virtual environment I ran "pipenv install requests" and got this fun error message: File…
1
vote
0 answers

pipenv shell is not obeying the path it was originated

Suppose there is a parent folder parent and two child folders child1 and child2 when I run pipenv install --python 3.9 in child2 folder it still sets to parent folder when I run the command pipenv shell. How do I force to use the specific child…
Volatil3
  • 14,253
  • 38
  • 134
  • 263
1
vote
1 answer

pipenv doesn't show progress bar when installing packages

When I try to install packages with pipenv, the progress bar doesn't show up. This is very important for me since I have limited data connection and I need to know in advance the size of the packages I'm downloading. This is an example of what I'm…
Caerwin
  • 51
  • 11
1
vote
1 answer

Module installed but Python cannot find it

I am using VS Code running Python 3.9 I have set up a virtual environment using pipenv shell and I installed flask-script as displayed here in my pipfile: [packages] flask = "*" sqlalchemy = "*" flask-sqlalchemy = "*" flask-script =…
1
vote
0 answers

Installing Pipenv on Windows

I am a complete beginner and just finished my first Python course on mimo. Now I would like to try myself on a project to create a blockchain in python. https://medium.com/@vanflymen/learn-blockchains-by-building-one-117428612f46 For this project I…
Basti
  • 11
  • 1