-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Open
Description
NOTE: We will try our best to check Github Issues, but forum.cursor.com is our main site for bug reports / user feedback. We'd recommend you post there for the fastest response.
Jupyter Extension Path Bug on Windows
Issue: Jupyter extension fails with "invalid WIN32 path characters" error
Environment:
- Cursor: 1.99.3
- Jupyter Extension: 2025.3.0 and 2024.11.0 (both affected)
- OS: Windows 11/10
- Python: 3.13.7
Error:
Error: /c:/Users/~/AppData/Roaming/Cursor/User/globalStorage/ms-toolsai.jupyter/version-2025.3.0/jupyter/kernels contains invalid WIN32 path characters.
Root Cause:
Extension uses Unix-style path normalization (/c:/Users/~/...) instead of Windows native paths (C:\Users\GEB\...)
Steps to Reproduce:
- Install Cursor on Windows
- Install Jupyter extension
- Try to open any .ipynb file
- Click "Select Kernel"
- Error occurs
Suggested Fix:
The Jupyter extension should:
- Use Windows-native path format (
C:\Users\...) on Windows - Avoid Unix-style path normalization (
/c:/Users/...) on Windows - Properly handle Windows path construction in the runtime directory setup
Workarounds Used:
- Set HOME environment variable (doesn't help)
- Restarted computer (doesn't help)
- Downgraded extension versions (doesn't help)
- Currently using JupyterLab as alternative
Metadata
Metadata
Assignees
Labels
No labels