Installing pip3/pipenv in WSL
June 07, 2021pip3 is required to install pipenv. In our case, it’s used to run some stuff in the python environment like seeding the database.
sudo apt updatesudo apt upgrade
sudo apt install python3 python3-pip ipython3Then to install pipenv and start it
sudo pip3 install pipenv
# start pipenvpipenv shellSome errors I encountered when starting pipenv shell
Warning: Python 3.7 was not found on your system…
# run this and rerurn the pipenv shell commandpipenv --three --python=`which python3`