tods icon indicating copy to clipboard operation
tods copied to clipboard

ModuleNotFoundError: No module named 'axolotl'

Open frankwang28 opened this issue 3 years ago • 2 comments

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

frankwang28 avatar Jan 27 '21 07:01 frankwang28

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

ZhongLIFR avatar Mar 03 '22 17:03 ZhongLIFR

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

akravcuk avatar Mar 11 '22 14:03 akravcuk