If I install in editable mode with pip install -e .[cs-oa-epics] I can't run the examples in the examples folder because I get the error:
from pyaml.accelerator import Accelerator
ModuleNotFoundError: No module named 'pyaml.accelerator'
Only if I switch to not editable mode with pip install .[cs-oa-epics] is the module found. Anyone else who has this problem?
If I install in editable mode with
pip install -e .[cs-oa-epics]I can't run the examples in the examples folder because I get the error:Only if I switch to not editable mode with
pip install .[cs-oa-epics]is the module found. Anyone else who has this problem?