aster icon indicating copy to clipboard operation
aster copied to clipboard

ModuleNotFoundError: No module named 'aster'

Open Ananyapam7 opened this issue 3 years ago • 2 comments

I have seen this issue : https://github.com/bgshih/aster/issues/10 but the solution suggested my @13muskanp does not work for me as after changing from

from aster.protos import pipeline_pb2 from aster.builders import model_builder to this: from protos import pipeline_pb2 from builders import model_builder

It is still throwing an error that no module aster is found in the other files of the different directories like builders, covnets, protos etc

Ananyapam7 avatar May 20 '21 22:05 Ananyapam7

If you are already inside the aster directory you can remove the aster. from imports. Also before running the code you need to build the protos. After you have built the pipeline.proto it generates pipeline_pb2.py file.

old-school-kid avatar Jul 01 '21 16:07 old-school-kid

If you are already inside the aster directory you can remove the aster. from imports. Also before running the code you need to build the protos. After you have built the pipeline.proto it generates pipeline_pb2.py file.

Thank you,Problem solved.

namelzya avatar Oct 06 '21 01:10 namelzya