简单powershell脚本双击启动jupyter notebook

出发点是因为不爱用 anaconda,然后每次用命令行启动jupyter又需要先切换到目录再来,挺麻烦。所以干脆就查了下写个简单的powershell脚本来执行,双击运行启动。

1. 创建powershell脚本

找个地方创建一个文件,后缀名是ps1, 代表powershell脚本。

Set-Location D:\Jupyterfile\ # 切换到工作目录文件夹
D:\Python3.7\Scripts\jupyter.exe notebook  # 启动 jupyer notebook

2. 修改注册表使其能够双击运行

Windows系统默认是不允许执行.ps1文件的,所以要修改一下

修改注册表\HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\Open\Command

  • 原本内容为:
    在这里插入图片描述
  • 做法是
  1. 新建一个 String Value, Name叫做Default-bak, Data使用上面这个默认值
  2. 将 Default的Data修改为"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -noLogo -ExecutionPolicy unrestricted -file "%1"

大功告成

你可能感兴趣的:(简单powershell脚本双击启动jupyter notebook)