numpy在centos下的安装

前端之家收集整理的这篇文章主要介绍了numpy在centos下的安装前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装相关工具。

[root@localhostmyhaspl]# yum install wget

[root@localhostmyhaspl]# yum install unzip

[root@localhostmyhaspl]# yum install gcc

[root@localhostnumpy-1.9.0]# yum installPython-devel

4、下载numpy源码并解压。

[root@localhostmyhaspl]# wget http://jaist.dl.sourceforge.NET/project/numpy/NumPy/1.9.0/numpy-1.9.0.zip

5、安装numpy。

[root@localhostmyhaspl]# unzip numpy-1.9.0.zip

[root@localhostmyhaspl]# cd numpy-1.9.0

[root@localhostnumpy-1.9.0]# python setup.py install

6、安装完毕后,重启 。

[root@localhostnumpy-1.9.0]# reboot

7、测试是否安装成功,如果能导入numpy库,表示安装成功。

[myhaspl@localhost~]$ python

Python2.7.5 (default,Jun 17 2014,18:11:42)

[GCC4.8.2 20140120 (Red Hat 4.8.2-16)] on linux2

Type"help","copyright","credits" or"license" for more information.

>>>import numpy as np

>>>

原文链接:https://www.f2er.com/centos/378865.html

猜你在找的CentOS相关文章