在Linux上开发python
打开控制台端口,执行命令即可
下载python源文件
wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0a1.tar.xz
解压文件
tar xvf Python-3.6.0a1.tar.xz
进入python解压的根目录默认是python压缩包的名称
Python-3.6.0a1/
执行
./configure
如果出现报错 configure: error: no acceptable C compiler found in $PATH,执行
yum install gcc
继续,执行
make
执行
make install
等待结束,并测试