Openerp在redhat下安装的问题。
-
按照这个贴: tinyerp.shine-it.net/viewthread.php?tid=184& ;extra=page%3D1
的步骤安装
前面都正常,到第7步
/usr/local/bin/python2.5 setup.py build
出现:
[root@cacti tinyerp-server-4.2.2]# python setup.py build
Error: python module psycopg (PostgreSQL module) is required
Error: python module libxml2 (libxml2 python bindings) is required
Error: python module libxslt (libxslt python bindings) is required哪位高手知道是什么原因,怎样才能正确安装好呢?
谢了先。
-
要学会看出错信息,出错信息提醒你有几个Python的模块没有安装。
-
[root@cacti tinyerp-server-4.2.2]# python setup.py build
Error: python module psycopg (PostgreSQL module) is required
Error: python module libxml2 (libxml2 python bindings) is required
Error: python module libxslt (libxslt python bindings) is requiredpsycopg-python
libxml2-python
libxslt-python
模块被需要 -
Error: python module psycopg (PostgreSQL module) is required (已解决)
注意:要改一下环境变量,否则会报错说找不到libpg.so.5文件
在postgres用户的.bash 或 .bashrc中加入
PATH="$PATH":/usr/local/pgsql/bin
export POSTGRES_HOME=/usr/local/pgsql
export PGLIB=$POSTGRES_HOME/lib
export PGDATA=$POSTGRES_HOME/data
export MANPATH="$MANPTH":$POSTGRES_HOME/man
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH":"$PGLIB"
重启
-
(已解决)
Error: python module libxml2 (libxml2 python bindings) is required
Error: python module libxslt (libxslt python bindings) is required没有安装libxml2-python模块
下载libxml2-python-2.6.21.tar.gz
python setup.py install -
参见:
shine-it.net/tinyerp/viewthread.php?tid=288&extra=page%3D1