Been trying to solve this error for a while. I’m working on a package named mlsauce
. When I clone the package and run python3 -m pip install . --verbose
(in a virtual environment), I get Successfully installed mlsauce-0.17.1
. HOWEVER at runtime, I get:
Traceback (most recent call last):
File "/workspaces/codespaces-blank/mlsauce/examples/adaopt_classifier.py", line 13, in <module>
import mlsauce as ms
File "/workspaces/codespaces-blank/mlsauce/mlsauce/__init__.py", line 58, in <module>
from .adaopt import AdaOpt
File "/workspaces/codespaces-blank/mlsauce/mlsauce/adaopt/__init__.py", line 1, in <module>
from .adaopt import AdaOpt
File "/workspaces/codespaces-blank/mlsauce/mlsauce/adaopt/adaopt.py", line 11, in <module>
import adaoptc
ModuleNotFoundError: No module named 'adaoptc'
I can see the .so file in the repository though:
Repository’s tree structure
How can I solve this error?
New contributor
Tee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.