Python cannot install PyGObject

2019-01-25 14:04发布

I try install pygobject by pip

pip install --user PyGObject

but I doesn't work:

Collecting PyGObject
  Using cached pygobject-2.28.3.tar.bz2
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 20, in <module>
      File "C:\Users\A\AppData\Local\Temp\pip-build-phby_jwb\PyGObject\
setup.py", line 272
        raise SystemExit, 'ERROR: Nothing to do, gio could not be found and is
 essential.'
                        ^
    SyntaxError: invalid syntax

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\A\AppData\Local\Temp\pip-build-phby_jwb\PyGObject

My python version v3.5.0:374f501f4567, Now I work on windows 7

2条回答
看我几分像从前
2楼-- · 2019-01-25 14:21

Upstream PyGObject just does not support this. See the PyGObject win32 project or the MSYS2 project to get it easily.

查看更多
乱世女痞
3楼-- · 2019-01-25 14:23

Since February 2017, you can install pygobject directly through pip: pip install pygobject. It requires some packages to be installed though.

Before that, it took a while, but it was possible to install pygobject with pip, since this commit.

pygobject wasn't on pypi though, so you had to specify the git or tarball URL:

  • git+https://git.gnome.org/browse/pygobject
  • https://download.gnome.org/sources/pygobject/3.22/pygobject-3.22.0.tar.xz

The latter only works with pygobject 3.22+, which should have happenned around mid-september 2016. (3.21.1 should be the first pip-installable development release)

查看更多
登录 后发表回答