我正在尝试从源代码构建python,包括我的用户在Red-Hat 6.4上的zlib。
我创建了一个目录$ HOME / soft
在该目录中,我解压缩了Python 2.7.8源代码,然后创建了一个我希望安装python的目录
tar xzf Python-2.7.8.tar.gz
mkdir python2.7.8
然后我配置并安装zlib
cd Python-2.7.8/Module/zlib
./configure --prefix=/home/myuser/soft
make
make install
然后是Python
cd ../..
./configure --prefix=/home/myuser/python2.7.8
make
make install
我得到了以下内容:
Python build finished, but the necessary bits to build these modules were not found:
_bsddb _curses _curses_panel
_sqlite3 _ssl _tkinter
bsddb185 bz2 dbm
dl gdbm imageop
readline sunaudiodev
To find the necessary bits, look in setup.py in detect_modules() for the module's name.
Failed to build these modules:
_multiprocessing binascii zlib
无法安装某些模块 我不能成为root,也不能使用sudo。如何安装这些模块?