Closed nokoxxx1212 closed 4 years ago
# build container
$ docker build ./ -t forecast-keiba
# run container
$ sh run.sh docker
->
ERROR: nbclient 0.4.1 has requirement jupyter-client>=6.1.5, but you'll have jupyter-client 5.3.5 which is incompatible.
$ sh run.sh docker root@2830a157075b:/opt#
.
├── README.md
├── conf
│ ├── README.md
│ ├── base
│ │ ├── catalog.yml
│ │ ├── logging.yml
│ │ └── parameters.yml
│ └── local
├── data
│ ├── processed
│ └── raw
├── docker
│ └── pytorch_1_4
│ ├── Dockerfile
│ ├── requirements.txt
│ └── run.sh
├── docs
│ └── source
│ ├── conf.py
│ └── index.rst
├── kedro_cli.py
├── logs
│ └── journals
├── notebooks
│ └── forecast_keiba
│ ├── data
│ ├── features
│ ├── models
│ └── visualization
├── setup.cfg
└── src
├── forecast_keiba
│ ├── __init__.py
│ ├── data
│ ├── features
│ ├── models
│ ├── pipeline.py
│ ├── pipelines
│ │ └── __init__.py
│ ├── run.py
│ └── visualization
├── requirements.txt
├── setup.py
└── tests
├── __init__.py
├── pipelines
│ └── __init__.py
└── test_run.py