1. install完成之后,没有UI,可以在安装的向导过程中配置,先点击language,选择英语,然后再software那里 勾选,server with gui->KDE, 一定要在看到的那个页面先点language,要不然 就直接检查完dependcy之后跳过去安装了,点了language的话,就会一步一步的然后选择,无数个坑。。。network&hostname设置 机器名加打开网络
2. centos 自带 python 2.7, 想升级到3.6.5 --版本选择,看你喜欢,https://www.python.org/ftp/python/3.6.5/
root 用户
# wget https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tgz --下载压缩包
# tar -zxvf Python-3.6.5.tgz --解压缩
# cd Python-3.6.5 --切换目录
#./configure --执行
#make -- 编译
#make install - 安装,遇到问题zlib not avalible- ..崩溃,centos7 yum收费,你懂的,替换yum,又花了一个下午,时刻记得备份
python3 -V --成功安装
3.