Questions tagged [pipenv-install]

78 questions
0
votes
2 answers

pipenv not installing any package?

When I do the pip freeze I can see all the packages but when I do the pipenv install it is not installing any packages. This is what I am getting when I do pipenv install. Installing dependencies from Pipfile.lock (0a15b8)... …
raj-kapil
  • 177
  • 1
  • 15
0
votes
1 answer

should I track (version control - e.g git, github ) requirements.txt?

Im using python 3.7 Im new to python (my main dev experience comes from javascript). I understand there is a Pipfile who specify the packages Im using directly . Additionally, there is a Pipfile.lock which specifies exact versions of direct and…
yoty66
  • 390
  • 2
  • 12
0
votes
1 answer

How does pipenv determine package versions to install?

I have a Pipenv file which looks something like this [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [packages] antlr4-python3-runtime = "4.8" numpy = "1.19.3" ... However, when I create the environment by running pipenv…
andrea
  • 482
  • 5
  • 22
0
votes
1 answer

What causes Python packages installed with pipenv to not be found when called in script?

On a Windows 10 machine with Python 3.9.5 and pipenv 2021.5.29. In a pipenv shell: Creating a virtualenv for this project... Pipfile: C:\Users\jp\Documents\programming\imseg\Pipfile Using C:/OSGeo4W/bin/python.exe (3.9.5) to create virtualenv... […
John Polo
  • 547
  • 1
  • 8
  • 25
0
votes
1 answer

Why is pip installing a dependency that is not in the pipfile?

I am working with a repo that has a requirements.txt file that includes lxml==3.8.0, but we never actually use it and it is causing errors when I try to install the requirements file. So I removed lxml from the requirements.txt and tried to install…
0
votes
1 answer

Could not resolve host: @github.com with pipenv

Hello I am trying to install a python package with pipenv, the package is in a private repository and I am using access token in order to download it. The problem is that when I execute pipenv I got the following error: Could not resolve host:…
Tlaloc-ES
  • 4,825
  • 7
  • 38
  • 84
0
votes
1 answer

How to install a python package from repository with several packages?

Hello I have a repository with a folder called Packages and inside this several python packages with their setup and all needed configuration in order to installe it. I can install it localy indicating the complete path to the package, but when I…
Tlaloc-ES
  • 4,825
  • 7
  • 38
  • 84
0
votes
0 answers

pipenv Locking Failed when installing QuantLib-Python

I tried to create an environment in the folder quantengine (on my MacOS V.11.3 - Big Sur) by first installing the QuantLib-Python package. It seems to install, but I get the Locking Failed error. Any idea what might be causing this? I installed…
0
votes
1 answer

ModuleNotFoundError after module installation in Pipenv - Pyspark

I'm trying to run a pyspark job in a local enviroment. After setting up pipenv and installing the module (numpy) successfully, the module still not visible to the code. Using pip to install the library instead of pipenv works. What am I missing…
Lucas
  • 597
  • 3
  • 15
0
votes
2 answers

unable to import "from google.cloud import bigquery"

I am working on a pipenv environment with python and when I import bigquery it fails: from google.cloud import bigquery returns: Traceback (most recent call last): File "/Users/orennieberg/Documents/git/guestybot/main.py", line 1, in from…
oren
  • 1
  • 1
0
votes
1 answer

Does "pipenv install requests" work with python 3.9.2?

I am following a guide to get NLTK working on my computer and part of the process is setting up a virtual environment so I can manage packages across projects. Here is the guide I'm following: https://docs.python-guide.org/dev/virtualenvs/ I run…
0
votes
0 answers

Pipenv is not recognized

I get this error every time I try to verify my pipenv version 'pipenv' is not recognized as an internal or external command, operable program or batch file. I've tried uninstalling and reinstalling as well as adding the path to the system…
0
votes
1 answer

Why does pipenv ignore PIPENV_VENV_IN_PROJECT?

Trying to structure my project like : MyProjectDir ├── .git │   ├── ├── .gitignore ├── .venv │   ├── .gitignore │   ├── bin │   ├── lib │   └── src ├── monitor_internet_connection.py But pipenv is ignoring PIPENV_VENV_IN_PROJECT > export…
Andrew Ward
  • 171
  • 2
  • 13
0
votes
3 answers

Pipenv shell not recognized after installing python and pipenv

Problem Introduction Language version: Python 3.8 Operating system: Windows 10 Any other relevant software: Jupyter Notebook and html-requests Context: I am trying to install pipenv and follow along with this tutorial on using pipenv. I was only…
CullerWhale
  • 21
  • 1
  • 8
0
votes
1 answer

How do I change pipenv/virtualenv location to work with Portable VS Code and project on thumb drive?

On Windows 10, I'm running VS Code 1.48.2 and Python 3, both installed on a thumb drive. I added an F:\Programs\VS Code\data folder with user-data andextensions. My project directory is F:\MyProject and it has a Pipfile. My project directory has a…
Meghan M.
  • 129
  • 1
  • 13