问题: checking for XML::Parser… configure: error: XML::Parser perl module is required for intltool
解决:yum install perl-XML-parser
Error Downloading Packages:
perl-XML-Parser-2.34-6.1.2.2.1.i386: failure: CentOS/perl-XML-Parser-2.34-6.1.2.2.1.i386.rpm from base: [Errno 256] No more mirrors to try.
问题:configure: error: wxWidgets is required. Try –with-wx-config.
解决:安装wxWidgets
Linux 也是有HOSTS文件的,用法也和WINDOWS的一样;我用的LINUX版本是CENTOS5.3
[root@localhost ~]# vi /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
~
~
~
"/etc/hosts" 4L, 187C
1.download CMake and install
#./configure
#gmake
#make install
2.download OpenAL and install
#cd CMakeConf
#cmake ..
[root@localhost numpy-1.3.0]# cat README.txt
NumPy is the fundamental package needed for scientific computing with Python.
This package contains:
* a powerful N-dimensional array object
* sophisticated (broadcasting) functions
* tools for integrating C/C++ and Fortran code
* useful linear algebra, Fourier transform, and random number capabilities.
It derives from the old Numeric code base and can be used as a replacement for Numeric. It also adds the features introduced by numarray and can be used to replace numarray.
More information can be found at the website:
http://scipy.org/NumPy
After installation, tests can be run with:
python -c 'import numpy; numpy.test()'
The most current development version is always available from our
subversion repository:
http://svn.scipy.org/svn/numpy/trunk
[root@localhost numpy-1.3.0]# python setup.py install