[GIS] Install Third-party Python Modules in QGIS (Windows)

pyqgispythonqgis

i try to follow this to Install Third-party Python Modules in QGIS (Windows).my QGIS version is the latest 2.18.10.

steps :

  1. donwload ez_setup.py

2.copy paste at C:\Windows\System32

3.OSGeo4W shell Run as Administrator

4.python ez_setup.py

and i take that message :

image

any idea why ?

if i try to :

im2

Best Answer

You only need to run (as Administrator):

python ez_setup.py -U setuptools

Now, it will work perfectly; as it can be observed at next image for installing pysal python module (as in your reference) with:

easy_install pysal

enter image description here

Loading same module in QGIS:

enter image description here

Related Question