Python 3.6 No module named pip Python 3.6 No module named pip python python

Python 3.6 No module named pip


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.pysudo python3.6 get-pip.py

After that you can use it as python3.6 -m pip or just pip3.6.


In Debian distributions, you can run

sudo apt-get install python-pip ##for python2sudo apt-get install python3-pip ##for python3


sudo dnf install python3

Try this.