centos6.5 源代码方式安装python2.7.8

./configure
make
Python build finished, but the necessary bits to build these modules were not found:
_curses            _curses_panel      _sqlite3        
_ssl               _tkinter           bsddb185        
bz2                dl                 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   fcntl
yum install readline-devel(readline)
yum install ncurses-devel ncurses(_curses _curses_panel)
yum install sqlite-devel (_sqlite3)
Failed to build these modules:
_multiprocessing   fcntl
rm /usr/include/stropts.h
yum install openssl-devel(_ssl)
yum install tkinter* tk-devel (_curses,_curses_panel,_tkinter)
yum install bzip2* (bz2)
Python build finished, but the necessary bits to build these modules were not found:
bsddb185           dl                 imageop         
sunaudiodev                                           
To find the necessary bits, look in setup.py in detect_modules() for the module's name.


running build_scripts
上述模块安装意义不大:
bsddb185: Older version of Oracle Berkeley DB. Undocumented. Install version 4.8 instead.
dl: For 32-bit machines. Deprecated. Use ctypes instead.
imageop: For 32-bit machines. Deprecated. Use PIL instead.
sunaudiodev: For Sun hardware. Deprecated.
make install
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在CentOS中源代码安装Python可以通过以下步骤完成: 1. 下载并解压Python源代码包。可以从Python官方网站下载最新的源代码包,例如Python 3.9.5版本: ``` wget https://www.python.org/ftp/python/3.9.5/Python-3.9.5.tgz tar -zxvf Python-3.9.5.tgz ``` 2. 进入解压后的Python源代码目录,执行以下命令进行编译和安装: ``` cd Python-3.9.5 ./configure --prefix=/usr/local/python3 make && make install ``` 解释一下上述命令: - `./configure`:用于生成Makefile文件,其中`--prefix`参数指定了Python安装的路径为`/usr/local/python3`。 - `make`:用于编译Python源代码。 - `make install`:用于将编译好的Python安装到指定路径。 3. 安装完成后,可以通过以下命令查看Python的版本信息: ``` /usr/local/python3/bin/python3 --version ``` 如果输出了Python的版本信息,则表示安装成功。 4. 使用新安装Python: - 直接使用`python3`命令启动Python 3.x版本: ``` /usr/local/python3/bin/python3 ``` - 将新安装Python添加到系统环境变量中,使其成为默认Python版本: - 编辑`/etc/profile`文件: ``` sudo vi /etc/profile ``` - 在文件末尾添加以下内容: ``` export PATH=$PATH:/usr/local/python3/bin ``` - 保存并退出文件,执行以下命令使环境变量生效: ``` source /etc/profile ``` - 然后,就可以直接使用`python3`命令启动Python 3.x版本了。 以上就是在CentOS中源代码安装Python的方法。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值