Open ERP原名Tiny ERP,是一个知名的开源ERP/CRM系统,来源于比利时,主要用python语言开发,具有扩展性强,界面友好等特征。
本文以Fedora 11系统为例,演示安装Open ERP 的全过程。
安装过程需要Root权限
su root
su -c 'rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm'
更新软件库:
yum update
安装postgresql数据库服务器
yum install postgresql-server
yum install postgresql
初始化数据库:
su root
su postgres
initdb /var/lib/pgsql/data
su postgres
psql -l
yum install python-psycopg2
yum install python-lxml
yum install PyXML
yum install python-setuptools-devel
easy_install egenix-mx-base
yum install libxslt-python
yum install pytz
yum install python-matplotlib
然后下载OPEN ERP安装包:
wget http://openerp.com/download/stable/source/openerp-server-5.0.1-0.tar.gz
tar -xvf openerp-server-5.0.1-0.tar.gz
cd openerp-server-5.0.1-0
python openerp-server.py
wget http://openerp.com/download/stable/source/openerp-client-5.0.1-0.tar.gz
tar -xvf openerp-client-5.0.1-0
cd openerp-client-5.0.1-0
python openerp-client.py
参考文档:
http://fedoraproject.org/wiki/EPEL/FAQ#howtouse