FAQ#
This page contains some frequently asked questions. Please consult this page before raising a GitLab issue.
Errors#
'simpnmr' is not recognized as an internal or external command, operable program or batch file.You are trying to run
simpnmrin a terminal where Python (and therefore SimpNMR) is not available. First check that Python is installed and works in this terminal (for example, by runningpython --version), then reinstall or activate SimpNMR in that environment before runningsimpnmragain.ModuleNotFoundError: No module named 'simpnmr'.Python cannot find the SimpNMR package in the current environment. Activate the environment where you want to use SimpNMR (for example with
conda activate ...orsource venv/bin/activate) and (re)install it:pip install simpnmr
no matches found: *ymlYour shell cannot find any files matching
*ymlin the current working directory. Check that you are in the folder that contains your YAML configuration file(s) before running the command.Missing file error: [Errno 2] No such file or directorySimpNMR cannot find one or more of the files specified. Double-check the paths to all required input files (see
simpnmr -hfor a summary of the expected inputs and options).yaml.scanner.ScannerErrororyaml.parser.ParserErrorSimpNMR could not read your YAML file because it is not valid YAML. Check the indentation, colons, and quotation marks in your configuration file (a YAML linter or editor with YAML support can also help you spot the issue).
PermissionError: [Errno 13] Permission deniedSimpNMR does not have permission to read or write one of the files or folders you selected. Make sure you have write access to the output directory and read access to all input files, or choose a different location for the outputs.