Python 3.6 No module named pip
Solution 1:
On Fedora 25 Python 3.6 comes as a minimalistic version without pip
and without additional dnf
installable modules.
But you can manually install pip
:
wget https://bootstrap.pypa.io/get-pip.py
sudo python3.6 get-pip.py
After that you can use it as python3.6 -m pip
or just pip3.6
.
Solution 2:
In Debian distributions, you can run
sudo apt-get install python-pip ##for python2
sudo apt-get install python3-pip ##for python3
Solution 3:
sudo dnf install python3
Try this.