Commit e68ee5a
🔧 Fix Netlify mkdocs command not found error
✅ PROBLEM SOLVED:
• Changed 'mkdocs build' to 'python -m mkdocs build'
• Changed 'pip install' to 'python -m pip install'
• Added PIP_USER=false to prevent user install issues
🛠️ TECHNICAL FIX:
• Netlify installed mkdocs but command wasn't in PATH
• Using 'python -m mkdocs' uses the module directly
• This is the standard solution for Netlify Python builds
✅ TESTED:
• Local build works with 'python -m mkdocs build'
• Should now deploy successfully on Netlify
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 1b0a47f commit e68ee5a
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| 7 | + | |
7 | 8 | | |
8 | 9 | | |
9 | 10 | | |
| |||
0 commit comments