我正在尝试在 Pycharm 中为 python 安装对象检测或 imageai。我做了所有的安装方法,但这显示了错误 ModuleNotFoundError: No module named 'imageai'
这是我的代码
from imageai.Prediction import ImagePrediction
import os
execution_path = os.getcwd()
prediction = ImagePrediction()
prediction.setModelTypeAsResNet()
prediction.setModelPath(os.path.join(execution_path, "resnet50_weights_tf_dim_ordering_tf_kernels.h5"))
prediction.loadModel()
predictions, probabilities = prediction.predictImage(os.path.join(execution_path, "1.jpg"), result_count=5 )
for eachPrediction, eachProbability in zip(predictions, probabilities):
print(eachPrediction , " : " , eachProbability)
我需要做什么来修复它?我是 python 的新手,请帮助我。
输出
Traceback (most recent call last):
File "C:/Python37/files/FirstPrediction/FirstPrediction.py", line 1, in <module>
from imageai.Prediction import ImagePrediction
ModuleNotFoundError: No module named 'imageai'
C:\Users\משתמש>pip show imageai
Name: imageai
Version: 2.0.2
Summary: A flexible Computer Vision and Deep Learning library for applications and systems.
Home-page: https://moses.specpal.science
Author: Moses Olafenwa and John Olafenwa
Author-email: UNKNOWN
License: MIT
Location: c:\python37\lib\site-packages
Requires:
Required-by:
C:\Users\משתמש>pip -V
pip 18.1 from c:\python37\lib\site-packages\pip (python 3.7)
原文由 עמית לוינזון 发布,翻译遵循 CC BY-SA 4.0 许可协议
Terensflow 不支持 Python 3.7 需要下载 python 3.6 卸载 python 3.7 并全部安装 python 3.6