项目作者: pottava

项目描述 :
Lightweight docker images of Scipy.
高级语言:
项目地址: git://github.com/pottava/docker-scipy.git
创建时间: 2017-01-01T18:10:34Z
项目社区:https://github.com/pottava/docker-scipy

开源协议:

下载


Supported tags and respective Dockerfile links:

・latest (versions/0.x/Dockerfile)
・0.19 (versions/0.x/Dockerfile)
・0.19-note (jupyter/versions/0.x/Dockerfile)

Usage

SciPy was installed with OpenBLAS & LAPACK.

  1. $ docker run --rm pottava/scipy -c 'import scipy; scipy.show_config()'

Using the Python default interpreter:

  1. $ docker run --rm -it pottava/scipy
  2. Python 3.5.2 (default, Dec 22 2016, 10:15:38)
  3. [GCC 6.2.1 20160822] on linux
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>>
  6. >>> import scipy
  7. >>> print(scipy.__version__)
  8. 0.19.0
  9. >>>
  10. >>> import numpy
  11. >>> print(numpy.__version__)
  12. 1.12.1
  13. >>>

With iPython:

  1. $ docker run --rm -it pottava/scipy:0.19-note ipython

With Jupyter notebook:

  1. $ docker run --rm -it -p 80:8888 pottava/scipy:0.19-note

With Jupyter notebook and Pandas:

  1. $ docker run --rm -it -p 80:8888 pottava/pandas