遇到问题 运行 numpy - 关于“有问题的加速后端”的错误? (python, 对比代码, OS X)
Having problems running numpy - error about ‘buggy accelerate backend’? (python, vs code, OS X)
非常新 python 初学者。
尝试构建我的第一个项目,但 numpy 有很多问题。当我尝试 运行 程序时,它返回此错误:
RuntimeError: Polyfit sanity test emitted a warning, most likely due to using a buggy Accelerate backend. If you compiled yourself, see site.cfg.example for information. Otherwise report this to the vendor that provided NumPy.
RankWarning: Polyfit may be poorly conditioned
我想我已经在 VS Code 上正确安装了所有东西,尽管弄清楚这一点也很头疼。
在谷歌上搜索有关加速的错误不断出现,但我不知道如何删除或卸载它...甚至不知道它是什么。
任何提示都会很有帮助!
如果需要更多信息,请告诉我。这是我的第一个问题。
谢谢! :)
发生这种情况时您使用的是 python 3.9 吗?
如果您不需要 python3.9,那么我鼓励您通过运行 以下命令:
python3.<insert lower version here> -m venv venv
例如,如果您想使用 python3.8:
python3.8 -m venv venv
在你可以安装必要的依赖项之后,事情应该可以工作了。
如果您需要(!) python3.9:
- 转到 venv/lib/python3.9/site-packages/numpy 并打开根 init.py 文件。
- 转到第270行,注释掉第270-287行。这是macOS darwin运行时报错的地方,好像和python环境有关。
这应该也可以,但我会推荐第一个解决方案。
非常新 python 初学者。
尝试构建我的第一个项目,但 numpy 有很多问题。当我尝试 运行 程序时,它返回此错误:
RuntimeError: Polyfit sanity test emitted a warning, most likely due to using a buggy Accelerate backend. If you compiled yourself, see site.cfg.example for information. Otherwise report this to the vendor that provided NumPy.
RankWarning: Polyfit may be poorly conditioned
我想我已经在 VS Code 上正确安装了所有东西,尽管弄清楚这一点也很头疼。
在谷歌上搜索有关加速的错误不断出现,但我不知道如何删除或卸载它...甚至不知道它是什么。
任何提示都会很有帮助!
如果需要更多信息,请告诉我。这是我的第一个问题。
谢谢! :)
发生这种情况时您使用的是 python 3.9 吗?
如果您不需要 python3.9,那么我鼓励您通过运行 以下命令:python3.<insert lower version here> -m venv venv
例如,如果您想使用 python3.8:python3.8 -m venv venv
在你可以安装必要的依赖项之后,事情应该可以工作了。
如果您需要(!) python3.9:
- 转到 venv/lib/python3.9/site-packages/numpy 并打开根 init.py 文件。
- 转到第270行,注释掉第270-287行。这是macOS darwin运行时报错的地方,好像和python环境有关。
这应该也可以,但我会推荐第一个解决方案。