Anaconda cannot find pigt

Running osx with anaconda distribution ... I imported the module pygtk

with

conda install -c vgauthier pygtk=2.24.0

as found here . Pygtk is reflected in conda list

, which returns:

...
pygments                  2.2.0                    py27_0
pygobject                 3.10.0                   py27_1    vgauthier
pygtk                     2.24.0                   py27_1    vgauthier
pyopenssl                 16.2.0                   py27_0
...

      

However, the import will fail, for example in ipython

:

In [1]: import pygtk
---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-1-f8a9c750c915> in <module>()
----> 1 import pygtk

ImportError: No module named pygtk

      

+3


source to share





All Articles