This is going to be a very short tutorial on how to install pip on Windows 10 bash, because using Python is lot more convenient on bash than on Windows. Honestly programming is lot more convenient on Linux than on Windows.
To install Python package management system (PIP) we will need Linux Bash Shell install on Windows 10. Currently there are multiple Linux based operating system available on Windows 10 Store from Ubuntu to OpenSuse.
I'm using Ubuntu 18.04 on my system. The Linux system comes with python already install so don't need to worry about installing python.
First thing we need to do is open up Bash shell. Then write the following paste the following code in the terminal
[sudo apt-get install software-properties-common
sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install python-pip && sudo apt-get install python3-pip]
The above commands will install both Python 3 and Python 2 version of pip. It's actually better to keep both installed.
To check if your pip is working properly you can enter the following commands to check the version s of the applicaiton
[pip -V
pip3 -V]
![[feature] Screenshot of Bash Shell](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikys95Ao_FIxcb_h3luHZK9nZnx3VGvUDF6Y1tpHqr74XybV2ikLe6YNBmHC_dWKvrO3VO8sCbhLG66holezzc2DwG-UVuF1wOFuXzNi-yW6b8oRvndLJu3cfEGEaJkpAZjNaigtPHcg/s640/Screenshot_5.png)
COMMENTS