OpenAI Whisper Cannot Import Numpy

题意:"OpenAI Whisper 无法导入 Numpy"

问题背景:

I am trying to run the OpenAI Whisper model but running into the following error when trying to run my script:

"我正在尝试运行 OpenAI Whisper 模型,但在运行脚本时遇到了以下错误:"

ValueError: Unable to compare versions for numpy>=1.17: need=1.17 found=None. This is unusual. Consider reinstalling numpy.

I have, as the error suggests, tried reinstalling Numpy but that didn't solve anything. When I run the command 'pip show numpy' I get:

"正如错误提示的那样,我尝试重新安装 Numpy,但这并没有解决问题。当我运行 'pip show numpy' 命令时,我得到以下输出:"

python 复制代码
Name: numpy
Version: 1.23.5
Summary: NumPy is the fundamental package for array computing with Python.
Home-page: https://www.numpy.org
Author: Travis E. Oliphant et al.
Author-email: 
License: BSD
Location: /opt/homebrew/lib/python3.10/site-packages
Requires: 
Required-by: contourpy, matplotlib, pandas, pythran, scipy, transformers, whisper

So not only do I have Numpy version 1.23.5 (>1.17), it also lists whisper as dependent on the package.

"所以,我不仅安装了 Numpy 1.23.5 版本(>1.17),它还显示 Whisper 依赖于该软件包。"

My machine is a Macbook Air M1 running OS Ventura 13.0.1.

"我的机器是一台运行 macOS Ventura 13.0.1 的 MacBook Air M1。"

I have looked through the OpenAI github for similar issues but I can't seem to find anything of the sort. I also tried importing the package manually with this following:

"我查阅了 OpenAI 的 GitHub,寻找类似的问题,但似乎没有找到相关内容。我还尝试使用以下方式手动导入该软件包:"

python 复制代码
import sys
sys.path.append('/opt/homebrew/lib/python3.10/site-packages/numpy')

But this didn't work either. Please let me know if you have any insight as to why this may be happening.

"但这也没有奏效。如果你对这个问题的原因有任何见解,请告诉我。"

问题解决:

I was able to resolve this issue by navigating to the directory printed by 'pip show numpy', which in my case was "/opt/homebrew/lib/python3.10/site-packages"

"我通过导航到 'pip show numpy' 命令输出的目录解决了这个问题,在我的情况下,该目录是 '/opt/homebrew/lib/python3.10/site-packages'。"

From there, there were some loose numpy related folders despite uninstalling numpy. I deleted these folders and reinstalled numpy using

"在那里,尽管我已经卸载了 Numpy,但仍然有一些与 Numpy 相关的零散文件夹。我删除了这些文件夹,并使用以下命令重新安装了 Numpy:"

python 复制代码
python3 -m pip install numpy

After doing this my code worked as expected.

"在完成这些操作后,我的代码按预期运行了。"

相关推荐
猎嘤一号19 分钟前
使用 PyTorch 和 TensorBoard 实时可视化模型训练
人工智能·pytorch·python
Takina~1 小时前
python打卡day49
python
Frankabcdefgh1 小时前
Python基础数据类型与运算符全面解析
开发语言·数据结构·python·面试
是梦终空1 小时前
Python毕业设计226—基于python+爬虫+html的豆瓣影视数据可视化系统(源代码+数据库+万字论文)
爬虫·python·html·毕业设计·毕业论文·源代码·豆瓣影视数据可视化
kaiaaaa1 小时前
算法训练第十五天
开发语言·python·算法
小玺玺2 小时前
[RDK X5] MJPG编解码开发实战:从官方API到OpenWanderary库的C++/Python实现
c++·python·opencv·rdk x5
zhuiQiuMX2 小时前
力扣LFU460
python·leetcode
noravinsc2 小时前
django 获取当前时间 格式 YYYY-MM-DD HH:Mm:ss
python·django·sqlite
谢李由202303220812 小时前
网络爬虫学习心得
爬虫·python
爱意随风起风止意难平2 小时前
AIGC 基础篇 Python基础 05 元组,集合与字典
开发语言·python·aigc