博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7 安装python
阅读量:6640 次
发布时间:2019-06-25

本文共 565 字,大约阅读时间需要 1 分钟。

yum groupinstall 'Development Tools'  yum install zlib-devel bzip2-devel  openssl-devel ncurses-devel  wget  https://www.python.org/ftp/python/3.5.0/Python-3.5.0.tar.xz  ls  tar Jxvf  Python-3.5.0.tar.xz  cd Python-3.5.0  ./configure --prefix=/usr/local/python3  make && make install  ln -s /usr/local/python3/bin/python3.5 /usr/local/bin/python3  python
[root@localhost Python-3.5.0]# pythonPython 2.7.5 (default, Nov  6 2016, 00:28:07) [GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux2Type "help", "copyright", "credits" or "license" for more information.>>>

安装成功

转载地址:http://ifovo.baihongyu.com/

你可能感兴趣的文章
记录:文件的读写
查看>>
shell脚本基础--学习笔记
查看>>
Linux网络故障几例
查看>>
(分享) 用jquery实现基于web 的套打设计器!
查看>>
编写Linux Shell脚本的最佳实践
查看>>
邮件系统中如何过滤重复邮件?
查看>>
用wamp配置的环境,想用CMD连接mysql怎么连
查看>>
编译安装zabbix3.2,LAMP
查看>>
获取SQL执行计划的常见几种方法
查看>>
自定义数据库连接工具类
查看>>
在64位Win7环境+64位JDK下,运行64位Eclipse,提示“Failed to load the JNI shared library”错误,提示jvm.dll不对...
查看>>
永中参加第八届南京软博会 国产基础办公软件厂商彰显实力(转)
查看>>
CentOS7,访问CD-ROM中的内容
查看>>
【过程改进】10分钟进阶Nuget
查看>>
改善SQL Server内存管理
查看>>
ubutn中开启ssh服务以及开启ftp服务
查看>>
我的Logo设计简史
查看>>
Linux系统服务器 GNU Bash 环境变量远程命令执行漏洞修复命令
查看>>
iphone-common-codes-ccteam源代码 CCAutoDisappearView.h
查看>>
Python字符串格式化
查看>>