Linux 系统中 SciPy 编程环境

来源:互联网 发布:刘耀林 知乎 编辑:程序博客网 时间:2024/05/22 02:17

Linux 系统中 SciPy 编程环境

1.  installation

strong@foreverstrong:~$ sudo apt-get install python-scipy

2. SciPy  版本

strong@foreverstrong:~$ pythonPython 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> import scipy>>> print(scipy.version)<module 'scipy.version' from '/usr/lib/python2.7/dist-packages/scipy/version.pyc'>>>> print(scipy.version.version)0.17.0>>> exit()strong@foreverstrong:~$ 

3.