Boost your workflow with a single right‑click! This project adds a “Open with Jupyter” entry to the Windows Explorer context menu so you can launch Jupyter Notebook directly in any folder—no Anaconda required.
- Windows 10/11
- PowerShell 5+
- Git
- Python 3.10+
-
Run the provided PowerShell command in Admin Mode to clone the repo and set up the context menu:
$repoPath = "C:\JupyterContext"; if (Test-Path $repoPath) { Remove-Item -Recurse -Force $repoPath }; git clone https://github.com/vikassharma545/Jupyter-Notebook.git $repoPath; cd $repoPath; Start-Process cmd.exe -ArgumentList "/c setup_context_menu.bat" -Verb RunAs
- Right-click a folder or desktop, select "Open with Jupyter" to launch Jupyter Notebook.
MIT License - Free to use and share!