We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在基础篇 NumPy 的安装这一则内容中的表述并不太准确,如下: 基础篇 NumPy 的安装
对于 Windows 用户而言,直接在 cmd 或者 power shell 中输入 pip install numpy 命令后,安装的并不是完整版的 NumPy. 没有 mkl 支持的 NumPy 没法生成窗函数(至少是这个,别的函数应该也有不支持的)。
cmd
power shell
pip install numpy
建议 Windows 用户从 Unofficial Windows Binaries for Python Extension Packages 网站下载对应的 .whl 文件,然后再用 pip install 命令安装对应的 numpy-[version-bit].whl. #
pip install
numpy-[version-bit].whl
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在基础篇 NumPy 的安装这一则内容中的表述并不太准确,如下:
基础篇 NumPy 的安装
对于 Windows 用户而言,直接在
cmd
或者power shell
中输入pip install numpy
命令后,安装的并不是完整版的 NumPy.没有 mkl 支持的 NumPy 没法生成窗函数(至少是这个,别的函数应该也有不支持的)。
建议 Windows 用户从 Unofficial Windows Binaries for Python Extension Packages 网站下载对应的 .whl 文件,然后再用
pip install
命令安装对应的numpy-[version-bit].whl
. #The text was updated successfully, but these errors were encountered: