- 浏览: 209101 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (196)
- Git (16)
- maven (8)
- Python (20)
- linux (14)
- java (30)
- spring (5)
- javascript (4)
- oracle (15)
- jquery (4)
- jbpm4.4 (4)
- ibatis (1)
- svn (1)
- sql server (1)
- sqoop (1)
- photoshop (2)
- 日常记录 (5)
- scala (1)
- IntelliJ IDEA (7)
- mysql (2)
- Hive (1)
- visual studio code (3)
- angularjs (5)
- nodejs (4)
- gradle (1)
- springboot (4)
- jakson (1)
- hibernate (2)
- 面试 (5)
- React (2)
- Kotlin (1)
- Netty (0)
- webstorm (2)
- spring cloud (4)
- redis (1)
- PowerDesigner (1)
- Vue (4)
- easyui (1)
- activiti (2)
- httpClient4.5 (2)
- logback (3)
- ngrinder (1)
- 分库分表 (1)
最新评论
-
严东军:
学习了,谢谢
摘录--DBMS_SCHEDULER -
zwllxs:
你知道你调的是谁的代码不?
jbpm4.4+ssh2 完整请假流程
安装Guake Terminal
1)安装glib
./configure
报错:
hecking for PCRE... no
configure: error: Package requirements (libpcre >= 8.13) were not met:
No package 'libpcre' 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 PCRE_CFLAGS
and PCRE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
解决办法:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
报错:
checking for PCRE... yes
checking for Unicode support in PCRE... no
configure: error: *** The system-supplied PCRE does not support Unicode properties or UTF-8.
解决办法:
export LD_LIBRARY_PATH=/usr/local/pcre/lib
make && make installed
2)安装Guake
$ git clone https://github.com/Guake/guake.git
$ cd guake
$ ./autogen.sh && ./configure && make
报错:
checking for glib-gettext >= 2.2.0...
testing glib-gettextize... not found.
***Error***: You must have glib-gettext >= 2.2.0 installed
to build guake. Download the appropriate package for
from your distribution or get the source tarball at
ftp://ftp.gtk.org/pub/gtk/v2.2/glib-2.2.0.tar.gz
解决方法:
ln -s /usr/local/glib/bin/glib-gettextize /usr/bin/glib-gettextize
报错:
Checking for required M4 macros...
glib-gettext.m4 not found
***Error***: some autoconf macros required to build guake
were not found in your aclocal path, or some forbidden
macros were found. Perhaps you need to adjust your
ACLOCAL_FLAGS?
解决方法:
export ACLOCAL_FLAGS="-I /usr/local/glib/share/aclocal"
报错:
Running aclocal-1.11...
configure.ac:79: warning: macro `AM_GCONF_SOURCE_2' not found in library
Running autoconf...
configure.ac:79: error: possibly undefined macro: AM_GCONF_SOURCE_2
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
解决方法:
yum install GConf2 GConf2-devel
报错:
checking for DEPENDENCIES... configure: error: Package requirements (
gtk+-2.0 >= 2.10.0
pygtk-2.0
x11
) were not met:
No package 'gtk+-2.0' found
No package 'pygtk-2.0' found
No package 'x11' 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 DEPENDENCIES_CFLAGS
and DEPENDENCIES_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
解决方法:
yum install libgnomeui-devel pygtk2-devel
报错:
checking for the python-vte package... no
configure: error: cannot import Python module "vte".
Please check if you have python-vte installed. The error was:
No module named vte
解决方法:
没解决掉,谁解决掉了,告诉我啊
--------------------------------------------------
实在是搞不定,换成Ubuntu
apt-get install guake
一条命令竟然搞定了!
1)安装glib
./configure
报错:
hecking for PCRE... no
configure: error: Package requirements (libpcre >= 8.13) were not met:
No package 'libpcre' 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 PCRE_CFLAGS
and PCRE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
解决办法:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
报错:
checking for PCRE... yes
checking for Unicode support in PCRE... no
configure: error: *** The system-supplied PCRE does not support Unicode properties or UTF-8.
解决办法:
export LD_LIBRARY_PATH=/usr/local/pcre/lib
make && make installed
2)安装Guake
$ git clone https://github.com/Guake/guake.git
$ cd guake
$ ./autogen.sh && ./configure && make
报错:
checking for glib-gettext >= 2.2.0...
testing glib-gettextize... not found.
***Error***: You must have glib-gettext >= 2.2.0 installed
to build guake. Download the appropriate package for
from your distribution or get the source tarball at
ftp://ftp.gtk.org/pub/gtk/v2.2/glib-2.2.0.tar.gz
解决方法:
ln -s /usr/local/glib/bin/glib-gettextize /usr/bin/glib-gettextize
报错:
Checking for required M4 macros...
glib-gettext.m4 not found
***Error***: some autoconf macros required to build guake
were not found in your aclocal path, or some forbidden
macros were found. Perhaps you need to adjust your
ACLOCAL_FLAGS?
解决方法:
export ACLOCAL_FLAGS="-I /usr/local/glib/share/aclocal"
报错:
Running aclocal-1.11...
configure.ac:79: warning: macro `AM_GCONF_SOURCE_2' not found in library
Running autoconf...
configure.ac:79: error: possibly undefined macro: AM_GCONF_SOURCE_2
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
解决方法:
yum install GConf2 GConf2-devel
报错:
checking for DEPENDENCIES... configure: error: Package requirements (
gtk+-2.0 >= 2.10.0
pygtk-2.0
x11
) were not met:
No package 'gtk+-2.0' found
No package 'pygtk-2.0' found
No package 'x11' 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 DEPENDENCIES_CFLAGS
and DEPENDENCIES_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
解决方法:
yum install libgnomeui-devel pygtk2-devel
报错:
checking for the python-vte package... no
configure: error: cannot import Python module "vte".
Please check if you have python-vte installed. The error was:
No module named vte
解决方法:
没解决掉,谁解决掉了,告诉我啊
--------------------------------------------------
实在是搞不定,换成Ubuntu
apt-get install guake
一条命令竟然搞定了!
发表评论
-
django笔记
2016-09-19 22:30 429django 1.创建工程 django-admin.py ... -
670 个常用 Python 库和示例代码
2016-09-09 10:40 595670 个常用 Python 库和示例代码 htt ... -
django学习笔记
2016-09-08 17:20 434创建工程: django-admin.py startproj ... -
python的类,元类
2016-09-04 06:11 595类实例化过程: 例子: class Custom: ... -
Python面向对象
2016-09-01 22:33 445属性包装: @property ... -
安装Scrapy
2016-08-29 18:23 571安装Scrapy 1) 安装zope.interface ... -
pip install pyquery pip install lxml 报错
2016-08-29 13:51 562首先安装 yum install libxml2 yum ... -
Python: __builtin__与__builtins__的区别
2016-08-04 09:54 493在学习Python时,很多人会问到__builtin__、_ ... -
Python变量命名规则及惯例
2016-08-04 09:41 357变量命名: 语法: (下划线或字母)+(任意数目的字母、 ... -
CentOS 6.5升级Python和安装IPython
2016-08-03 14:55 420CentOS 6.5升级Python和安装IPython h ... -
异常处理
2016-07-25 11:38 493如果你在写python程序时遇到异常后想进行如下处理的话,一般 ... -
Python关键字
2016-07-25 10:54 514False class finally ... -
Python优秀博文
2016-07-25 10:25 505Python博文 http://ww ... -
查看python关键字的方法
2016-07-25 10:20 680在python 语言中,通过使用keyword 模块可以查看 ... -
Python中is和==的区别
2016-07-25 09:48 307Python中的对象包含三要素:id、type、value。 ... -
python 预发
2016-07-22 21:05 334in 语句 for循环也可以有else语句 quit ... -
Python 字符串操作
2016-07-22 11:20 551原链接地址:http://www.cnpy ... -
python的tab补全功能
2016-07-21 22:12 6361.切换到site-packages目录 cd /usr ... -
python笔记
2016-07-21 17:54 367查看Python的版本 python -V 变量命名规范 ...
相关推荐
centos7.0安装mysql centos7.0安装mysql centos7.0安装mysql
### LAMMPS在CentOS 7上的安装指南 #### 概述 LAMMPS (Large-scale Atomic/Molecular Massively Parallel Simulator) 是一款开源的分子动力学模拟软件,广泛应用于材料科学、物理学、化学等领域。为了能在CentOS 7...
CentOS 5.8 安装教程 CentOS 5.8 是一个流行的 Linux 操作系统,本文将指导用户如何安装 CentOS 5.8。 知识点 1: 准备 CentOS 的 ISO 文件 在安装 CentOS 5.8 之前,需要准备好 CentOS 的 ISO 文件。用户可以从 ...
CentOS 7 安装 MySQL
CentOS 8 安装图解详解 在这篇文章中,我们将详细介绍 CentOS 8 的安装过程,并提供相关的图解,以便读者更好地理解和安装 CentOS 8。 一、CentOS 8 概述 CentOS 8 是继 RHEL 8 之后的最新版本,提供了两种模式:...
Centos 7.6 安装流程详解 在这篇文章中,我们将详细介绍 Centos 7.6 的安装流程,从虚拟机的创建到 Centos 7.6 的安装,再到 Secure CRT 与虚拟机的连接。 虚拟机的创建 在安装 Centos 7.6 之前,我们需要创建一...
在使用CentOS时,有时可能会遇到需要手动安装网卡驱动的情况,尤其是在新安装或者更新硬件后。本文将深入讲解如何在CentOS系统中安装网卡驱动,以实现网络连接。 首先,我们需要了解CentOS识别网络接口的基本原理。...
" CentOS安装过程中常见问题和解决方案" 在 CentOS 安装过程中,用户经常会遇到一些问题,这些问题可能会导致安装失败或安装过程卡顿。为了帮助用户解决这些问题,本文总结了 CentOS 安装过程中常见的问题和解决...
CentOS 5.5 下 Qt 的安装配置 在 CentOS 5.5 平台下安装 Qt 需要经过多个步骤,每个步骤都需要注意一些重要细节。本文将详细讲解 CentOS 5.5 下 Qt 的安装配置过程。 一、安装软件列表 在开始安装 Qt 之前,需要...
centos安装教程,由图解,比较详细
本文将详细介绍如何在32位CentOS系统上安装飞秋(IPMSG)及其安装方法。 飞秋,全称Internet Popup Message System(IPMSG),是一款基于局域网的即时通讯软件,类似于Windows平台上的QQ或者钉钉。它支持文字聊天、...
Centos7下安装MongoDB Centos7下安装MongoDB是指在Centos7操作系统中安装和配置MongoDB数据库的过程。MongoDB是一个基于分布式文件存储的NoSQL数据库,由C++语言编写,运行稳定,性能高旨在为 WEB 应用提供可扩展的...
"CentOS7安装指南" 本指南将指导您完成 CentOS 7 的安装过程,涵盖从虚拟机设置到安装完成后的基本配置。 虚拟机设置 在开始安装 CentOS 7 之前,需要设置虚拟机的网络适配器模式为“桥接模式”。这将允许虚拟机...
centos7离线安装bison
VASP安装教程(centos) VASP(Vienna Ab initio Simulation Package)是一款功能强大的从头算电子结构模拟软件包,在材料科学、 Condensed Matter Physics 和化学领域中广泛应用。VASP安装教程(centos)提供了在 ...
### CentOS 6.7 安装 JDK 1.8 的详细步骤 在 CentOS 6.7 上安装 JDK 1.8 是一项常见的任务,对于运行 Java 应用程序至关重要。以下是从连接到服务器到验证安装的整个过程: #### 1. 连接到 CentOS 服务器 首先,...
Centos7.9安装部署Zabbix6,需要安装包的发邮箱,文件里面包含邮箱地址
CentOS 上安装 SysBench 在 CentOS 系统上安装 SysBench 需要满足一些前置条件,并且需要按照特定的步骤进行安装,否则可能会出现错误。 前置条件 在安装 SysBench 之前,需要确保已经安装了 GCC 和 libtool 的...
centos7 安装dotnet完整操作步骤,并用supervisord服务启动dotnet程序
【标题】:“CentOS迅雷下载地址及安装图解” 【正文】: CentOS是一款基于Linux的开源操作系统,它以Red Hat Enterprise Linux (RHEL)为基础,提供了稳定、安全且免费的企业级计算环境。在本资源中,我们将涵盖从...