每次當我想要啓動ipython筆記本時,我必須在Windows命令行cmd
或powershell
中鍵入「jupyter notebook」。是否可以設置別名?我試着做這powershell
:如何在PowerShell中爲「jupyter notebook」設置別名?
New-Alias nb "jupyter notebook"
nb
失敗,因爲powershell
無法識別jupyter notebook
爲cmdlet或功能。
那麼如何設置別名並將其保存在powershell
?有沒有更好的主意在Windows上啓動ipython notebook
?
可能它不喜歡它,因爲它包含一個參數,而不僅僅是可執行文件的名稱?改用'jupyter-notebook'來代替。 –