【发布时间】:2020-01-04 03:46:43
【问题描述】:
我正在尝试 pip install Jupyter 但 powershell 给了我这个错误:
C:\Users\me> pip install jupyter
pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included,
verify that the path is correct and try again.
At line:1 char:1
+ pip install jupyter
+ ~~~
+ CategoryInfo : ObjectNotFound: (pip:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
我已尝试阅读此处有关修复路径的其他问题,但即使在重新启动 powershell 和我的系统后,这些解决方案也无法正常工作。此外,我执行了系统更新并重新安装了 python。这些都不起作用。
【问题讨论】:
-
你安装
pip成功了吗?您是否将pip添加到 PATH 环境变量中?也许你可以尝试使用pip3...
标签: python powershell path pip installation