网址是:http://www-03.ibm.com/systems/power/software/aix/linux/toolbox/alpha.html
在AIX下安装python
Python是个好东西。
去IBM网站下载for AIX的最新版:
http://www-1.ibm.com/servers/aix/products/aixos/linux/download.html
python这个包肯定是要的:
ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/python/python-2.2-5.aix5.1.ppc.rpm
使用rpm -ivh 包名 来安装rpm包。
这里还有一个问题,就是你的rpm管理器的版本,可以用 lslpp -L rpm.rte 来查看,如果版本低于3.0.5.20,需要下载安装新的 rpm.rte
ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/INSTALLP/ppc/rpm.rte
具体的安装方法和步骤可以参考
ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/README.txt
升级完rpm管理器后安装python:rpm -ivh python-2.2-5.aix5.1.ppc.rpm
提示还需要几个库文件,分别是libdb,libexpat,libgdbm和libreadline,在刚才的IBM网站上找到对应的包:
db-3.3.11-4.aix5.1.ppc.rpm
ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/db/db-3.3.11-4.aix5.1.ppc.rpm
expat-1.95.7-1.aix5.1.ppc.rpm
ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/expat/expat-1.95.7-1.aix5.1.ppc.rpm
gdbm-1.8.3-2.aix5.1.ppc.rpm
ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/gdbm/gdbm-1.8.3-2.aix5.1.ppc.rpm
readline-4.3-2.aix5.1.ppc.rpm
ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/readline/readline-4.3-2.aix5.1.ppc.rpm
同样用rpm -ivh 包名来安装,装完后再安装python包就可以了。