Pipenv requires existing folder ~/.local/share/virtualenvs
#2786
Labels
good first issue
Issues suitable as a newcomer to get familiar with Pipenv!
Type: Bug 🐛
This issue is a bug.
Issue description
When running the current commit 51cbc2e of pipenv in a Docker image (like
python:3.6
), one has to manually create the folder/root/.local/share/virtualenvs
for pipenv to work.Expected result
Actual result
Steps to replicate
docker run -it --rm python:3.6 bash # inside the container pip install git+git://github.com/pypa/pipenv.git@51cbc2e2f76a7c60f879a608fd96e95faca35f2e pipenv install requests
To fix:
# inside the container mkdir -p /root/.local/share/virtualenvs
The text was updated successfully, but these errors were encountered: