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
I recently had exactly the same problem.
Instead of fixing mkdocs build behavior I ended with: find docs/ -name "*.ipynb" -print0 | xargs -0 -I {} bash -c "echo {}&& jupyter execute --inplace {}&" and execute: False in the mkdocs.yml.
Concerning to this, parallel build does obviously not help much. However, @thedrow did not involve notebook builds. Here, parallel execution matters a lot!
I have a repo with... too many notebooks.
Is there any way to enable multi-core/multi-processing to speedup up the conversion?
The text was updated successfully, but these errors were encountered: