Pycharm - Python packaging tools not found

I am trying to install packages in Pycharm for the python3.5 interpreter. It says:

Python packaging tools not found. Install packing tools .

But when I try to install, He gives this error.

AttributeError: module 'setuptools.dist' has no attribute 'check_specifier' 

I am using Ubuntu 16.04.2, Pycharm 2017.1.1 Edition

+5
source share
1 answer

Run this command and you can install the packaging tools in Pycharm:

 sudo apt install python3-pip 

This is python3-pip, not python-pip if you are using the Python3 interpreter.

+15
source

Source: https://habr.com/ru/post/1267061/


All Articles