Silver Library (Archived)
Installing Pipenv on WSL 본문
반응형
Problem.
CANNOT INSTALL or UNABLE TO RUN pipenv.
Seriously demotivated me to learn Django for a week.
Almost moved to Anaconda for a virtual workplace.
Solution.
#Before jumping on to the next input step, input following
1. pip list
check if virtualenv is already installed.
2. pip uninstall virtualenv
3. pip uninstall pipenv
4. pip install pipenv
If still not able to run pipenv,
#on WSL, input the following
sudo -H pip3 install pipenv
(then input) pipenv
Thought.
sudo command is the only concern.
I hope this method does not hurt my security issue once I do some important project in future...
Future of me, if I read this now: this is where I might made a mistake. But I think it'd be alright since workplace only device will be different.
'Personal DB' 카테고리의 다른 글
Python/Django : Why formatter black never works? (0) | 2020.12.02 |
---|---|
WSL - how to return Windows from Linux? (0) | 2020.12.01 |
[Git & WSL] Django Coding - Day 1 (0) | 2020.11.23 |
Django - Why I can't install django on python? (0) | 2020.11.23 |
VSCode - How to activate Prettier anyway? (0) | 2020.11.23 |