Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pottava/docker-scipy
Lightweight docker images of Scipy.
https://github.com/pottava/docker-scipy
docker-image ipython jupyter-notebook lightweight matplotlib pandas
Last synced: about 1 month ago
JSON representation
Lightweight docker images of Scipy.
- Host: GitHub
- URL: https://github.com/pottava/docker-scipy
- Owner: pottava
- Created: 2017-01-01T18:10:34.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-23T16:37:49.000Z (over 6 years ago)
- Last Synced: 2024-11-05T10:48:05.766Z (3 months ago)
- Topics: docker-image, ipython, jupyter-notebook, lightweight, matplotlib, pandas
- Homepage: https://hub.docker.com/r/pottava/scipy/tags/
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Supported tags and respective `Dockerfile` links:
・latest ([versions/0.x/Dockerfile](https://github.com/pottava/docker-scipy/blob/master/versions/0.x/Dockerfile))
・0.19 ([versions/0.x/Dockerfile](https://github.com/pottava/docker-scipy/blob/master/versions/0.x/Dockerfile))
・0.19-note ([jupyter/versions/0.x/Dockerfile](https://github.com/pottava/docker-scipy/blob/master/jupyter/versions/0.x/Dockerfile))### Usage
SciPy was installed with OpenBLAS & LAPACK.
```
$ docker run --rm pottava/scipy -c 'import scipy; scipy.show_config()'
```Using the Python default interpreter:
```
$ docker run --rm -it pottava/scipy
Python 3.5.2 (default, Dec 22 2016, 10:15:38)
[GCC 6.2.1 20160822] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> import scipy
>>> print(scipy.__version__)
0.19.0
>>>
>>> import numpy
>>> print(numpy.__version__)
1.12.1
>>>
```With iPython:
```
$ docker run --rm -it pottava/scipy:0.19-note ipython
```With Jupyter notebook:
```
$ docker run --rm -it -p 80:8888 pottava/scipy:0.19-note
```With Jupyter notebook and Pandas:
```
$ docker run --rm -it -p 80:8888 pottava/pandas
```