我想在AWS上安装PywebkitGTK
(Amazon EC2,Amazon Linux AMI 2013.09.2(64位))
$ sudo ./configure --prefix=/usr
...
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating ./config.lt
config.lt: creating libtool
checking for a Python interpreter with version >= 2.4... python
checking for python... /usr/bin/python
checking for python version... 2.6
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.6/site-packages
checking for python extension module directory... ${exec_prefix}/lib64/python2.6/site-packages
checking for headers required to compile python extensions... found
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for DEPS... no
configure: error: Package requirements (libxslt
gthread-2.0
pygtk-2.0) were not met:
No package 'libxslt' found
No package 'gthread-2.0' found
No package 'pygtk-2.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables DEPS_CFLAGS
and DEPS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
在我的linuxmint上,我可以使用sudo apt-get install ...
依赖关系,
但是我不能通过yum
任何帮助将不胜感激:)
答案 0 :(得分:0)
Amazon Linux AMI不支持任何与GUI相关的内容。实际上,它的YUM repo甚至没有甚至与GUI远程相关的软件包。因此,您无法在Amazon Linux的YUM仓库中找到丢失的软件包。
相反,你可能想尝试一下CentOS / Fedora / Ubuntu / RHEL AMI,它支持所有与GUI相关的东西。虽然这些配置不是Out-Of-The-Box,但您当然可以手动配置它们。