Python 3.6 No module named pip

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.py
sudo 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 python2

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

Python 3.6 No module named pip

sudo dnf install python3

Try this.

Leave a Reply

Your email address will not be published. Required fields are marked *