datamllab / tods

TODS: An Automated Time-series Outlier Detection System
http://tods-doc.github.io
Apache License 2.0
1.45k stars 194 forks source link

ModuleNotFoundError: No module named 'axolotl' #20

Open frankwang28 opened 3 years ago

frankwang28 commented 3 years ago

When running generate_dataset from the given example, the axolotl module is not found. Running pip install -e . lead to no errors. However, from another issue post, running python setup.py install leads to:

120932875_1444343129103308_1617084652823366945_n

ZhongLIFR commented 2 years ago

you should firstly install the "axolotl" by running "pip install axolotl" in your window if you use a MacOS

akravcuk commented 2 years ago

Hello, just getting the message: "ModuleNotFoundError: No module named 'axolotl.utils'" once running this example: https://github.com/datamllab/tods

$ pip list | grep axol axolotl 0.0.1

$ pip install python-axolotl

In [1]: import axolotl

In [2]: dir(axolotl) Out[2]: ['author', 'builtins', 'cached', 'doc', 'email', 'file', 'license', 'loader', 'name', 'package', 'path', 'spec', 'status', 'version']

In [3]: print(axolotl.version) 0.2.3

In [4]: from axolotl.backend.simple import SimpleRunner

ModuleNotFoundError Traceback (most recent call last) Input In [4], in <cell line: 1>() ----> 1 from axolotl.backend.simple import SimpleRunner

ModuleNotFoundError: No module named 'axolotl.backend'

Thank you in advance