Questions tagged [pipenv]

For questions related to Python's pipenv dependency management tool.

1333 questions
-1
votes
0 answers

Pipenv install not working on fresh install

I am new to python. I have an existing project, with a requirements file. I'd like to set up pipenv, on windows. When I run pipenv install, everything fails, and the last line of the output is package installation failed. I will not paste the whole…
Dnise99
  • 1
  • 2
-1
votes
1 answer

zsh: command not found: pipenv

even after installing pipenv 3x it is not working on my mac. If I use the command "python3 -m pipenv --version" I CAN see that it is installed (see below), however, if I go with "pipenv --version" the command is not found. My guess is that I messed…
rasmus
  • 1
  • 3
-1
votes
1 answer

Receiving a warning when installing pipenv and the pipenv command not being recognized by CMD

I tried to install pipenv. But it returns an error. And pipenv command is not recognized by CMD. Error: WARNING: The script virtualenv.exe is installed in 'C:\Users\me\AppData\Roaming\Python\Python311\Scripts' which is not on PATH. Consider adding…
Mr Hunter
  • 15
  • 3
-1
votes
1 answer

Pipenv not found on command line(WINDOWS)

enter image description here I have installed pipenv but when I try to use pipenv it says pipenv not found I installed pipenv using pip install pipenv. And pipenv installed successfully. But when I try to use pipenv, pipenv is not found in the…
-1
votes
2 answers

Option "completion" not found when installing pipenv on Mac

I am following the solution in this thread here to "properly" install pipenv on Mac. At the last step, when running the command exec zsh, I receive this error message: (eval):46: command not found: complete Usage: pipenv [OPTIONS] COMMAND…
Tristan Tran
  • 1,351
  • 1
  • 10
  • 36
-1
votes
1 answer

Can vagrant and ansible playbook be run "inside" of pipenv on macOS

I am using macOS and there I have created pip env. After I activate pip env, I install ansible in created virenv. After I activate this virenv terminal, I run vagrant up in this terminal. Is this good practice ? My motivation to do this: I want to…
marissa
  • 45
  • 7
-1
votes
2 answers

mod_wsgi can't import flask with pipenv

I'm trying to deploy my first flask application and I'm running into some issues. I had my app working on my local machine with the build in flask development server, and all my dependencies were managed by pipenv. I uploaded my app to…
user1432738
  • 101
  • 1
  • 5
-1
votes
1 answer

Getting ImportError Using "flask run"

I'm creating a Flask RESTful API. Here's the project structure: │ .env │ .flaskenv │ .gitignore │ .code-workspace │ .py │ dev_start │ LICENSE │ Pipfile │ Pipfile.lock │ README.md │ ├───_api │ …
-1
votes
1 answer

source not found for source $(pipenv --venv)/bin/activate

I'm trying to learn how to use pipenv, and while I can start it and use it from the shell, I can't work out how to open in from a script, the tutorial I am using says to write the following file: #!/bin/sh export FLASK_APP=./myapp/index.py source…
iFunction
  • 1,208
  • 5
  • 21
  • 35
-1
votes
1 answer

Python version is not updating when I move it up system PATH in windows 10 environment variables

I'm trying to use python 3.8 in PowerShell(specifically with pipenv, but still doesn't work for cmd) as I am learning about python virtual environments, I also have python 3.9 and 3.7 installed. In a tutorial about Django the instructor changes his…
butwhy
  • 1
-1
votes
2 answers

Activation of virtual environment for python in PowerShell the parenthesis not showing does it matter when shell confirms env is on?

My PowerShell virtual environment activates the virtual environment for my Django project but does not show the parenthesis does it really matter. C:\Users\xxx\.virtualenvs\mb-g7VMb0x7 already activated. I cannot use Scripts\activate as I installed…
coja56
  • 25
  • 5
-1
votes
1 answer

I was trying to install numpy using pipenv with the code "pipenv install python" but it kept on coming up with errors

I was trying to install numpy using pipenv with the code "pipenv install python" but it kept on coming up with errors. Below is the last output I got in my terminal while trying to install. Could someone please help me debug this. When I was…
-1
votes
1 answer

Python - Proper package management causing issue with code? Once working code now erroring out

I'm not a software dev; I am self taught and learn through trial and error so this may be clear to some of you whereas I just don't know what I'm doing wrong. That being said, I have a project I was working on a few months ago... which is now…
boog
  • 472
  • 1
  • 5
  • 23
-1
votes
1 answer

Get error when i add a new library to my pipfile and run docker-compose

Hi i add a library pyodbc into my pipfile, when i run the command docker-compose up app-name and run the dockerfile config i get an error when try to install dependency from pipfile.lock my python version is 3.7.4 this is my dockerfile FROM…
Kevin
  • 11
  • 3
-1
votes
1 answer

I can't use django with python 3.7

My original python version is 3.6.9 >> I have installed 3.7 manually >> then I tried to use pipenv to create a virtual environment >> pipenv --python 3.7 every thing was fine until I tried to install django, I had this error and I don't know how…
1 2 3
88
89