You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Importing utils generates the following error due to a missing config file on the new_api branch.
>>> from falafel import utils
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/global/u1/m/maccrann/cmb/lensing/code/falafel/falafel/utils.py", line 14, in <module>
config = io.config_from_yaml(os.path.dirname(os.path.abspath(__file__)) + "/../input/config.yml")
File "/global/homes/m/maccrann/.conda/envs/lenspipe/lib/python3.7/site-packages/orphics/io.py", line 96, in config_from_yaml
with open(filename) as f:
FileNotFoundError: [Errno 2] No such file or directory: '/global/u1/m/maccrann/cmb/lensing/code/falafel/falafel/../input/config.yml'
The text was updated successfully, but these errors were encountered:
Thanks Niall, a config file was missing. I've pushed it now. You'll need to do the usual of copying input/config_template.yml to input/config.yml and editing it with paths relevant to the system you are on. I'll think about how this can be made more seamless.
Importing utils generates the following error due to a missing config file on the new_api branch.
The text was updated successfully, but these errors were encountered: