[BUG] Section "Running the examples only, without installing" in readme depends on Prophet which is not delivered along the docker image
See original GitHub issueDescribe the bug
We have the section “Running the examples only, without installing” in the README.md. Following the instructing and installing with gradlew, the given Jupyter notebook examples/darts-intro.ipynb
has a second cell:
from darts.models import (
NaiveSeasonal,
NaiveDrift,
Prophet,
ExponentialSmoothing,
ARIMA,
AutoARIMA,
StandardRegressionModel,
Theta,
FFT
)
But prophet is not installed by default and you get:
ImportError: cannot import name 'Prophet' from 'darts.models' (/home/jovyan/work/darts/models/__init__.py)
To Reproduce Follow the instruction on the section “Running the examples only, without installing” on a fresh environment.
Expected behavior The example to run without a need to manual installation. Or add a flag/condition to skip prophet if it is not installed.
System (please complete the following information):
- Python version: na
- darts version: 0.5.0
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Vulnerability scanning for Docker local images
Docker Scan runs on Snyk engine, providing users with visibility into the security posture of their local Dockerfiles and local images. Users trigger ......
Read more >Running under Docker - Node-RED
docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red. Let's dissect that command: docker run - run this container, ...
Read more >Containers For Deep Learning Frameworks User Guide
A Docker container is the running instance of a Docker image. ... registry as a project within your account if you have a...
Read more >Using Docker for Node.js in Development and Production
Usually, you will need to run a docker build only when your ... separate container and move only the result of the installation...
Read more >Building a Native Executable - Quarkus
If you cannot install GraalVM, you can use a multi-stage Docker build to run Maven inside a Docker container that embeds GraalVM. There...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@ajallooeian Julien fixed this issue. If you have some time, could you please check it works for you?
Please consult the install guide section explaining how to enable Prophet. In the next version (0.21.0) we will reinstate prophet as a dependency and this won’t be necessary anymore.