-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
Description
Course
data-engineering-zoomcamp
Question
How to Resolve error: Failed to spawn: nbconvert Caused by: No such file or directory (os error 2)
Answer
First, ensure nbconvert is installed and upgraded:
pip install nbconvert --upgrade
If the issue persists, add the nbconvert to uv:
uv add jupyter nbconvert
and then try to run nbconvert:
uv run jupyter nbconvert --to=script notebook.ipynb
Checklist
- I have searched existing FAQs and this question is not already answered
- The answer provides accurate, helpful information
- I have included any relevant code examples or links
Reactions are currently unavailable