https://github.com/ryosukecla/mypythonworkspace
My Workspace
https://github.com/ryosukecla/mypythonworkspace
Last synced: 13 days ago
JSON representation
My Workspace
- Host: GitHub
- URL: https://github.com/ryosukecla/mypythonworkspace
- Owner: RyosukeCla
- License: mit
- Created: 2018-01-13T12:50:51.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2018-09-19T20:07:55.000Z (almost 8 years ago)
- Last Synced: 2025-05-26T04:10:52.118Z (about 1 year ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 50.8 MB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My Python Workspace
My research workspace for graduation thesis
## Feature
|Jupyter Kernels|
|:-------------:|
| python 3.6.x |
| R 3.4.x |
| Julia 0.6.2 |
includings
- pyenv
- anaconda 3
- jupyterlab
- jupyter nbextensions
- nodejs
- julia
- r
pacakges
- pymc3
- tensorflow / keras / chainer / theano / scikit learn
- scikit image / opencv
- numpy / scipy
- pandas
- matplotlib / seaborn
- etc
## Requirement
Install Docker Community Edittion.
- https://www.docker.com/community-edition
## Getting Started
### launch workspace
```
$ docker-compose up -d
```
### boot jupyterlab
```
$ docker-compose exec admin jupyter lab
```
go to [localhost:8080](http://localhost:8080)
### boot tensor board
```
$ docker-compose exec admin tensorboard --logdir=./path/to/logs
```
go to [localhost:6006](http://localhost:6006)
### destory workspace
```
$ docker-compose down
```
### start/stop worksplace
if you want to stop workspace temporarily,
```
$ docker-compose stop
```
and, if you want to start stopped workspace
```
$ docker-compose start
```