CentOS7下安装Python3.6

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-17 18:24:03

Python

安装

CentOS7默认软件源中没有Python3,要安装Python3需首先安装epel软件源。

[root@localhost ~] yum install epel-release

使用 yum 安装 Python3

[root@localhost ~] yum install python36

安装 Python 依赖库

使用 pip3 命令安装项目需要用到的 Python 依赖库

[root@localhost ~] pip3 install vg
[root@localhost ~] pip3 install numpy
[root@localhost ~] pip3 install matplotlib
[root@localhost ~] pip3 install shapely
[root@localhost ~] pip3 install networkx
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!