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
This line unconditionally tries to create the temporary pandoc library directory, which persists after knitting one Rmd from within PyCharm.
This results in a warning being displayed on every knit operation.
Guarding this clause with if (!dir.exists(library_path)) will prevent the warning, leading to cleaner console output.