Linux平台下Python的numpy、scipy、matplotlib等第三方包的安装
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
ubuntu系统
安装python的第三方包,可以使用pip安装,也可以使用apt安装
pip安装时一定要注意系统时间要是对的,不然下载时会报证书错误导致不能下载安装!
若要下载python2系列的第三方包,就安装python-pip,若是python3系列的第三方包,就下载python3-pip。
下面以python3系列下载为例:
pip3安装
apt install python3-pip
pip3 install numpy
pip3 install scipy
pip3 install matplotlib
或者apt安装:
apt-get install python3-scipy
apt-get install python3-matplotlib
CentOS系统:
CentOS/Redhat系列操作系统与ubuntu系统类似,可以用pip安装,也可以直接用yum工具安装。上面ubuntu演示了python3系列下的第三方包如何安装,这里演示python2系列下第三方包的安装。
pip安装
安装pip(注意系统时间需要校正)
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py
pip -V //查看版本
pip install numpy
pip install scipy
pip install matplotlib
pip安装Ipython
pip install ipython
yum直接安装
yum -y install gcc gcc-c++ numpy python-devel scipy
附:安装readline扩展模块
yum install readline-devel
yum install patch
pip install readline
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)