A.Arshad
A.Arshad

Reputation: 21

use correct version of 'pip' installed for your Python interpreter

I am using pycharm , i am having this error by adding any package , Click Here

i have tried lot of methods , but didn't succeed yet.

Info :

  1. python 3.6.2
  2. pip 10.0.1
  3. VirtualEnv

Upvotes: 0

Views: 4886

Answers (1)

MegaIng
MegaIng

Reputation: 7886

You can't use pip to install these packages for different reasons:

  • PyQt4: This can't be installed with pip because it is to complex (Here is a full explanation with workarounds)
  • gui is an empty package without content. There just is nothing to install. Look at the project page: No homepacke, no download button no source code

Upvotes: 2

Related Questions