我正在尝试使用pip
安装Jupyter笔记本,但出现以下错误:
Fatal error in launcher: Unable to create process using '"c:\users\amlut\hello\.venv\scripts\python.exe" "C:\Users\amlut\LearningPython\.venv\Scripts\pip.exe" install jupyterlab': ???????????
现在,我认为问题是我将文件夹名称hello
更改为LearningPython
。所以现在我的终端不知道python.exe
在哪里。我检查了PATH
,它具有更新的目录。旧文件夹名称不在PATH
中的任何位置。我不确定这里还有什么地方。
我的python.exe
当前所在的位置:
C:\Users\amlut>where python
C:\Users\amlut\LearningPython\.venv\Scripts\python.exe
C:\Users\amlut\AppData\Local\Microsoft\WindowsApps\python.exe
和pip.exe
:
C:\Users\amlut>where pip
C:\Users\amlut\LearningPython\.venv\Scripts\pip.exe
以下是位于我的系统路径中的路径:
C:\Users\amlut\LearningPython\.venv\Scripts
C:\Users\amlut\AppData\Local\Microsoft\WindowsApps
我也尝试安装python,但无济于事。