Open cbebe opened 9 months ago
We can avoid having to call sys.path.append by running the script as a module in the root directory.
sys.path.append
Example (EPS subsystem):
$ python -m EPS.eps_subsystem Starting EPS subsystem on port 1801
I tried removing sys.path.append("../") from the script and it runs just fine.
sys.path.append("../")
I'm not sure if this would be the right approach, though, I would still need to see how the project would be structured inside the container.
We can avoid having to call
sys.path.append
by running the script as a module in the root directory.Example (EPS subsystem):
I tried removing
sys.path.append("../")
from the script and it runs just fine.I'm not sure if this would be the right approach, though, I would still need to see how the project would be structured inside the container.