Hi there, i'm a current Jupyter user and am trying out Marimo for the first time.
I have used the converter command to convert my Jupyter notebook to Marimo.
Currently, i'm facing an issue where i cannot load my hydra config in the Marimo notebook.
I have ran
marimo edit --headless --host 0.0.0.0 --port 8883
in my root dir (/~/project), which is where marimo_notebook.py resides.
project
|- config
|- hydra
|- config.yaml
|- marimo_notebook.py
However, when i run the following to initialize my hydra config:
with hydra.initialize(config_path='./config/hydra'):
config_1 = hydra.compose(config_name='config')
I get the error below:
Traceback:
...
self._missing_config_error(
File "/opt/conda/lib/python3.10/site-packages/hydra/_internal/config_loader_impl.py", line 102, in _missing_config_error
raise MissingConfigException(
hydra.errors.MissingConfigException: Primary config directory not found.
Check that the config directory '/tmp/marimo_5081/config/hydra' exists and readable
Why is the root dir:
/tmp/marimo_5081/
instead of
project
?