diff --git a/doc/source/intro.rst b/doc/source/intro.rst index e06d2026f..7b2211a8d 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -83,6 +83,13 @@ The following example imports a CDB file. See :class:`.FeFormat` for a list of supported FE formats. Check out the :ref:`input_file_for_pyacp` section to see how input files can be created. +.. danger:: + When working on Windows, be careful of backslashes in paths: These may correspond to + `escape sequences `_, resulting in errors. + To avoid issues, make sure to quote the backslashes (by using ``\\``) or use a + `raw string literal `_ by prefixing your string with **r**, + like ``model = acp.import_model(r"path\to\your\model.acph5")``. + Start modelling ~~~~~~~~~~~~~~~