ModuleNotFoundError:没有名为'imageai'的模块

问题描述 投票:0回答:2

我想在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)
python python-3.x pycharm
2个回答
2
投票

您首先需要从此处下载此ImageAI whl文件。 https://github.com/OlafenwaMoses/ImageAI/releases/download/2.0.2/imageai-2.0.2-py3-none-any.whl

运行以下

pip install imageai-2.0.2-py3-none-any.whl

1
投票

Terensflow不支持Python 3.7需要下载python 3.6卸载python 3.7并安装所有python 3.6

© www.soinside.com 2019 - 2024. All rights reserved.