You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--skip-lock is problematic because it requires also being able to generate the install lines from the Pipfile. Additionally given the other bugs around this flag, the recommendation is if you want to skip the lock and install something for testing just run pipenv run pip install If you want to do this from the Pipfile run pipenv requirements to generate a requirements file and then run pipenv run pip install -r requirements.txt
This will also improve the security of pipenv because some users may be using the --skip-lock flag in their CI builds.
The text was updated successfully, but these errors were encountered:
Issue description
A simplified architecture for pipenv would be:
--skip-lock
is problematic because it requires also being able to generate the install lines from the Pipfile. Additionally given the other bugs around this flag, the recommendation is if you want to skip the lock and install something for testing just runpipenv run pip install
If you want to do this from the Pipfile runpipenv requirements
to generate a requirements file and then runpipenv run pip install -r requirements.txt
This will also improve the security of pipenv because some users may be using the
--skip-lock
flag in their CI builds.The text was updated successfully, but these errors were encountered: