Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add workaround for warning from
nbconvert
.
When executing a notebook during export to HTML, `nbconvert` prints the following warning: ``` 0.00s - Debugger warning: It seems that frozen modules are being used, which may 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off 0.00s - to python to disable frozen modules. 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. ``` The workaround is to temporarily set the environment variable according to the suggestion in the warning. It can be safely disabled since we do not need debugging.
- Loading branch information