SimplyStaking / panic_cosmos

🚨 PANIC for Cosmos
GNU General Public License v3.0
47 stars 36 forks source link

pipenv set up #59

Open Highlander-maker opened 2 years ago

Highlander-maker commented 2 years ago

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.