python scipy库安装
时间: 2023-07-08 13:49:18 浏览: 49
python 3.8 安装numpy和scipy
安装 scipy 库可以通过 pip 命令进行。打开命令行终端(Windows 系统可以使用 cmd 或 PowerShell),输入以下命令即可:
```
pip install scipy
```
如果您使用的是 Anaconda 发行版,可以使用以下命令:
```
conda install scipy
```
这样就可以安装 scipy 库了。如果您遇到问题,请尝试使用管理员权限运行命令行终端。
阅读全文