pipenv Questions

2

Is there a way to refer to the current directory in a .env file? Trying to point the location of a config file from userprofile, to the current path. For example, CONFIG_FILE=${USERPROFILE}\.conf...
Summerly asked 26/3, 2019 at 13:33

3

Solved

When install it by pip(pip install pipenv), on zsh shell can't find the command pipenv. If install it by brew: brew install pipenv, then run pipenv shell, got error Loading .env environment variabl...
Evanthe asked 28/5, 2021 at 5:56

7

I am a beginner in python so please be gentle and if you do have an answer please provide details. I just installed the most recent python version 3.10 after making sure to delete all previous inst...
Observable asked 1/11, 2021 at 10:1

6

I have a project where I'm trying to install from the pipfile using pipenv install. I get som error when installing. Before i describe the error, this is what I did: Reinstall pipenv Reinstall Pyt...
Cocainism asked 18/6, 2019 at 9:53

3

With pipenv, how do I add or update only one package without changing versions of other packages? I've tried both: pipenv update --selective-upgrade requests and pipenv update --keep-outdated requ...
Cycloparaffin asked 9/4, 2019 at 12:12

2

I have a python project and I am using pipenv to handle deps. I need to create a zip file that includes the source code and all the dependencies code as well. I need this zip file for uploading i...
Heathen asked 3/8, 2018 at 20:41

9

Solved

I installed and added Python3.9 and Pip to the PATH through the installer. python --version # Python 3.9.7 pip --version # pip 21.2.4 from C:\Users\{MyUserName}\AppData\Local\Programs\Python\Python...
Intrusion asked 31/8, 2021 at 13:1

4

Solved

I am trying to run a Django project using pipenv shell. But when I enter the command pipenv shell, it fails. ❯ pipenv shell Creating a virtualenv for this project… Pipfile: /Users/juyeong/Desktop/...
Sorption asked 20/11, 2019 at 17:1

4

While in the VS Code Terminal, the 'exit' command or 'ctrl + d' combination closes the terminal directly, whereas I just want to deactive pipenv, is there a way to do this?
Zebulun asked 30/3, 2020 at 13:44

6

I made sure pipenv was installed in the following path C:\Users\Owner> pip install pipenv Then got the following response: Requirement already satisfied: setuptools>=36.2.1 in c:\users\owne...
Earthenware asked 12/5, 2020 at 1:27

8

Solved

I want Pipenv to make virtual environment in the same folder with my project (Django). I searched and found the PIPENV_VENV_IN_PROJECT option but I don't know where and how to use this.
Carburize asked 27/9, 2018 at 15:9

6

Solved

How to can get the path of virtualenv in pipenv? can configure it to use a custom path for newly created virtualenv?
Centuple asked 15/12, 2018 at 13:54

2

Solved

Is it possible to set up a custom section in the pipfile? By default I see only [packages] and [dev-packages], but I have extra dependencies for some environment. So I want to install packages an...
Gamy asked 12/2, 2019 at 14:32

7

Solved

I'm using pipenv inside a docker container. I tried installing a package and found that the installation succeeds (gets added to the Pipfile), but the locking keeps failing. Everything was fine unt...
Otherworldly asked 29/9, 2020 at 17:47

3

Solved

How can I install a specific git branch with pipenv? I know this command will install the bitcoinlib master branch pipenv install -e git+https://github.com/1200wd/bitcoinlib.git#egg=bitcoinlib B...
Bootblack asked 17/10, 2018 at 20:9

4

Solved

I have a Python project consisting of a Jupyter notebook, several scripts in a bin directory and modules in a src directory, with dependencies in a Pipfile: myproject ├── myproject.ipynb ├── Pipfi...
Authenticity asked 6/4, 2018 at 18:45

8

C:\Users\danie01\fox\test\robotframework>pipenv install --python 3.5 Creating a virtualenv for this project... Pipfile: C:\Users\danie01\fox\test\robotframework\Pipfile Using C:\Users\danie01\Ap...
Moonrise asked 10/7, 2018 at 1:9

3

Solved

I'm unable to integrate my project's unit tests into VSCode. Test discovery fails because source files are not recognized by pytest. (Just for clarification, this is a question about VSCode, not ab...
Shuttering asked 12/8, 2020 at 22:35

2

I have installed pipenv by pip3. And it works pipenv -h in script. But after in crontab, it's not work. pip3 show pipenv Location: /home/ubuntu/.local/lib/python3.6/site-packages my cronjob 21 ...
Laney asked 19/1, 2018 at 13:27

5

I'm trying to create a python virtual environment with pipenv 2018.11.26 on Windows [Version 10.0.14393] and Python 3.5.2 (Anaconda 4.1.1 (64-bit)). These are all mandatory settings that I can't al...
Truck asked 30/6, 2020 at 9:55

2

Solved

I recently upgraded my distro version from ubuntu 20.04 to ubuntu 22.04 and now pipenv command does not work. Any solutions to fix this? > pipenv --help Traceback (most recent call last): File...
Garwin asked 27/4, 2022 at 12:36

12

Solved

I know a little of Python and more than a year ago I wrote a small script, using pipenv to manage the dependencies. The old platform was Windows 7, the current platform is Windows 10. At that time ...
Roana asked 4/8, 2020 at 13:20

3

I am trying to use pipenv in PyCharm with Python 3.8 but cannot locate the pipenv executable. Current situation : I have installed Python 3.8.2 on a Debian platform (actually LMDE 3), where Pytho...
Alleyn asked 27/4, 2020 at 12:15

5

I'm having a problem installing Python dependencies using pipenv inside a Dockerfile. Dockerfile: RUN pip install --upgrade pip RUN pip install pipenv # Copy dependencies source code WORKDIR /proj...
Sinusitis asked 19/7, 2023 at 2:10

2

Solved

I am using pipenv to manage my python packages, in my repository, I have both Pipfile and Pipfile.lock versioned. and I want to install all python packages on my live server. should I use pipenv sy...
Levan asked 21/9, 2018 at 16:27

© 2022 - 2025 — McMap. All rights reserved.