No module named 'sktime'
时间: 2023-09-15 09:20:11 浏览: 709
sktime-workshops:sktime讲习班和教程
To resolve the error "No module named 'sktime'", you need to install the `sktime` library. You can install it using the pip package manager by running the following command:
```
pip install sktime
```
Make sure you have pip installed and that you are running the command in the correct environment (virtual environment if applicable). After installing `sktime`, you should be able to import it without any issues.
阅读全文