python的介绍
?
????
?
????
?
????
?
python2与3的区别
Old:?print "The answer is",?2*2?
New:?print ("The answer is",?2*2)
?
Old:
New:
?
?
windows添加python2.7 和3.5环境变量
##2.7
?
OK
?
?
##3.5
##python.exe 重命名为python35.exe
?
OK
?
centos 6.6安装python2.7和3.5
yum groupinstall ‘Development Tools‘
tar xf Python-3.5.0.tgz
cd Python-3.5.0
./configure --prefix=/usr/local/python3
make all
make install
echo $?
make clean
make distclean
?
- 安装步骤如下 :
1 准备编译环境(环境如果不对的话,可能遇到各种问题,比如wget无法下载https链接的文件)
yum?groupinstall?‘Development?Tools‘
时间: 2024-11-05 12:26:30