관리 메뉴

Silver Library (Archived)

Installing Pipenv on WSL 본문

Personal DB

Installing Pipenv on WSL

Chesed Kim 2020. 11. 23. 17:30
반응형

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.