Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pycharm - Python packaging tools not found

I'm trying to install packages in Pycharm for python3.5 interpreter. It says,

Python packaging tools not found. Install packaging tools.

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

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

I'm using Ubuntu 16.04.2, Pycharm Community edition 2017.1.1

like image 320
Goutham Ganesan Avatar asked Apr 23 '17 06:04

Goutham Ganesan


1 Answers

Run this command and you should be able to install the packaging tools in Pycharm:

sudo apt install python3-pip 

It's python3-pip, not python-pip if you are using the Python3 interpreter.

like image 154
niklas Avatar answered Sep 29 '22 15:09

niklas