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
{{ message }}
This repository has been archived by the owner on Apr 28, 2022. It is now read-only.
After some issues with my pipenv set up i found a couple of things that made it work... I thought i could leave it here or if you want me to add somewhere else let me know.
Pipfile: /tmp/Pipfile
Using /usr/bin/python3.8 (3.8.2) to create virtualenv…
⠙ Creating virtual environment...ModuleNotFoundError: No module named 'virtualenv.seed.via_app_data'
✘ Failed creating virtual environment
[pipenv.exceptions.VirtualenvCreationException]:
Failed to create virtual environment.```
///I uninstalled pipenv:
```$ pip3 uninstall pipenv
Found existing installation: pipenv 2020.6.2
Uninstalling pipenv-2020.6.2:
Would remove:
/home/markhneedham/.local/bin/pipenv
/home/markhneedham/.local/bin/pipenv-resolver
/home/markhneedham/.local/lib/python3.8/site-packages/pipenv-2020.6.2.dist-info/*
/home/markhneedham/.local/lib/python3.8/site-packages/pipenv/*
Proceed (y/n)? y
Successfully uninstalled pipenv-2020.6.2```
///And then thought I should check if there was anything left in the ~/.local/bin directory:
```$ ls -alh```
///virtualenv was still there! I thought it would have been removed when I uninstalled pipenv, but perhaps it was installed separately when I installed something else, not sure.
///Anyway, i got rid of virtualenv:
``` pip3 uninstall virtualenv
Found existing installation: virtualenv 20.0.30
Uninstalling virtualenv-20.0.30:
Would remove:
/home/markhneedham/.local/bin/virtualenv
/home/markhneedham/.local/lib/python3.8/site-packages/virtualenv-20.0.30.dist-info/*
/home/markhneedham/.local/lib/python3.8/site-packages/virtualenv/*
Proceed (y/n)? y
Successfully uninstalled virtualenv-20.0.30```
///And now we’ll install pipenv again:
```$ pip3 install pipenv```
///Then i could create a virtual environment.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
After some issues with my pipenv set up i found a couple of things that made it work... I thought i could leave it here or if you want me to add somewhere else let me know.
The text was updated successfully, but these errors were encountered: