-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pipenv install ignores install_requires from setup.py #4355
Comments
We are also seeing the same thing. We have a library that installs from a GitHub repo, and the dependencies for the library do not install with pipenv 2020.6.2 |
I reproduced this by installing the following Pipfile and checking if joblib, a dependency of Librosa, is installed.
Run the following with pipenv versions $ pipenv install
$ find $(pipenv --venv) -name 'joblib' |
Same issue is present in 2020.5.28 |
Perhaps use |
Did you regenerate the lock file? Or can you show the lockfile content? |
The dependencies are still missing within the lock file. |
Setting environment variable
|
We're still experiencing this issue in the latest My Pipfile entry just looks something like this:
using |
seems this is not happening to me in |
I am experiencing this issue as well. Has there been any updates on this? |
Make sure That is, run |
@konstantinmiller that doesn't seem possible. the local |
Seems there has been a regression. I needed to define Required packages missing from the virtualenv Target package
|
Please recheck with |
Affacted release:
2020.6.2
works fine in
2018.11.26
Issue description
pipenv install
does not install dependencies from setup.py ->install_requires
Pipefile
setup.py:
Expected result
Configured packages from
example-adapter/setup.py
/install_requires
are being installed.Actual result
Configured packages from
example-adapter/setup.py
/install_requires
NOT are being installed.Steps to replicate
pipenv install
The text was updated successfully, but these errors were encountered: