How to change pip3 to pip command in Ubuntu and Ubuntu based distros ?
Solution:
Just run this command in terminal to convert pip3 to pip in Ubuntu:
sudo update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 10
How to change python3 to python command in Ubuntu and Ubuntu based distros ?
Solution:
Just run this command in terminal to convert python3 to python in Ubuntu:
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.x 10
Hence the final screen will look like the above and you can use the command
pip to install packages just like windows.
0 Comments
If you have any doubt pls let me know..