https://github.com/aktech/sympy-docker
SymPy's Docker Image
https://github.com/aktech/sympy-docker
cas docker sympy
Last synced: 8 months ago
JSON representation
SymPy's Docker Image
- Host: GitHub
- URL: https://github.com/aktech/sympy-docker
- Owner: aktech
- Created: 2018-02-09T16:51:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-09T17:25:36.000Z (over 8 years ago)
- Last Synced: 2025-04-03T22:14:12.294Z (about 1 year ago)
- Topics: cas, docker, sympy
- Homepage: https://hub.docker.com/r/aktech/sympy/
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SymPy Dockerfile
[](https://travis-ci.org/aktech/sympy-docker)
This repository contains Dockerfile of Sympy for Docker's automated build
published to the public Docker Hub Registry.
## Usage
* Pull image from dockerhub
```bash
$ docker pull aktech/sympy
Using default tag: latest
latest: Pulling from aktech/sympy
f49cf87b52c1: Already exists
7b491c575b06: Already exists
b313b08bab3b: Already exists
51d6678c3f0e: Already exists
09f35bd58db2: Already exists
0f9de702e222: Already exists
73911d37fcde: Already exists
99a87e214c92: Already exists
6ba03e115097: Pull complete
Digest: sha256:82728d3a4b648817d436a60416a39e01f45d1136e5cdd651dccd83ee8236947a
Status: Downloaded newer image for aktech/sympy:latest
```
* Check Image
```bash
$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
aktech/sympy latest d5db373de6b2 3 minutes ago 741MB
```
* Play
```bash
docker run -it d5db373de6b2
Type "help", "copyright", "credits" or "license" for more information.
Python 3.6.4 (default, Dec 21 2017, 01:35:12)
[GCC 4.9.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sympy
>>> sympy.__version__
'1.1.1'
>>>
```