C:\Users\缪>export PIP_INDEX_URL=http://mirrors.aliyun.com/pypi/simple/ 'export' 不是内部或外部命令,也不是可运行的程序 或批处理文件。
时间: 2024-09-06 13:02:24 浏览: 81
使用豆瓣提供的国内pypi源 <font color=red>原创</font>
看起来你在尝试通过命令行在Windows环境下使用Linux shell命令`export`,但实际上,`export`是Linux shell中的环境变量设置命令,而在Windows上通常使用不同的方法来设置环境变量。
如果你想在Windows的PowerShell或CMD中设置pip的索引URL,应该这样做:
```powershell
# PowerShell
$env:PIP_INDEX_URL = "http://mirrors.aliyun.com/pypi/simple/"
Set-ItemProperty -Path 'HKCU:\Environment' -Name PIP_INDEX_URL -Value $env:PIP_INDEX_URL
# CMD
set PIP_INDEX_URL=http://mirrors.aliyun.com/pypi/simple/
reg add "HKEY_CURRENT_USER\Environment" /v PIP_INDEX_URL /t REG_SZ /d %PIP_INDEX_URL% /f
```
这里我们分别设置了系统级别的环境变量和用户级别的环境变量,确保pip能够从指定的镜像源下载软件包。
阅读全文