初学Linux安装部署Python3.7环境-笔记

Linux安装部署Python3.7环境

1.Python官网下载Python3.7安装包:下载文件格式tar

2.通过xftp6,将Python3.7安装包传输至虚拟机上的linux系统

3.解压Python3.7安装包

[root@localhost ~]# cd/home/local/ProgramFiles/Python
[root@localhost Python]# tar -xvf Python-3.7.1.tar
  • 使用xftp6在home文件夹下建立local->ProgramFiles->Python文件夹
  • 解压Python3.7.1.tar压缩包

linux解压命令

tar打包指令

格式:tar [-选项] [-f  包文件名]  文件名或目录名.......

tar命令常用选项
选项 说明 实例
v 显示运行过程的信息

a.对目录/root/test目录进行打包

# tar -cvf test.tar  /root/test

b.查看包文件test.tar内容

# tar -tf  test.tar

c.将包文件“test.tar”解压

# tar -xvf  test.tar

f 指定文件名
c 打包成tar文件
x 解开tar文件
t 列出tar文件所包含的文件
z 调用gzip程序压缩tar包文件
j 调用bzip2程序压缩tar包文件

4.安装Python

[root@localhost Python-3.7.1]# yum install gcc* glien* -y 

5.运行脚本configure

[root@localhost Python-3.7.1]# ./configure --prefix=/usr/local/python3.7

6.开始编译

[root@localhost Python-3.7.1]# make
[root@localhost Python-3.7.1]# make install

7.设置Python环境变量

[root@localhost bin]# cd /etc/profile.d/

新建Python3.sh文件
[root@localhost profile.d]# vim python3.sh

文件内容添加:
Export PATH="$PATH:/usr/local/python3.7/bin"

输入完成后,按下ESC按键,输入冒号:wq,保存并退出

[root@localhost profile.d]#echo $PATH
查看环境变量

8.进入Python3.7的编译环境

[root@localhost ~]# python3.7

部署过程中遇到的问题:

1.使用vim命令,报错not found

1)输入 rpm -qa|grep vim命令 查看返回结果
vim-minimal
vim-commono
vim-enhanced
若以上三条中有一条没有,则需要手动安装
执行yum -y install vim-enhanced

2)全部重新安装
yum -y install vim*

 

2.退出vim编辑环境

按下ESC,输入冒号:wq可保存退出

你可能感兴趣的:(Linux)