Search found 1 match

by acoque
Wed May 31, 2023 9:49 am
Forum: Support
Topic: ImportError on first run of Polymer
Replies: 2
Views: 17517

Re: ImportError on first run of Polymer

Hi Moritz, I faced the same issue and I replaced the line `from polymer.main import run_atm_corr, Level1, Level2` in "polymer_cli.py" with from polymer.main import run_atm_corr from polymer.level1 import Level1 from polymer.level2 import Level2 You could also add the following lines in "polymer/main...