ModuleNotFoundError:没有名为'openalpr_api的模块>>

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

我正在github中从事以下项目。https://github.com/ShreyAmbesh/Traffic-Rule-Violation-Detection-System

安装了项目所需的所有软件包,但是当我尝试在pycharm中运行项目时,出现以下错误...

File "VehicleMoniter.py", line 21, in 
import openalpr_api
ModuleNotFoundError: No module named 'openalpr_api'

我也在系统中安装了openalpr

C:\Users\preetha\Desktop\python project\traffic project\Traffic-Rule-Violation-Detection-System-master>pip install openalpr
Requirement already satisfied: openalpr in c:\users\preetha\appdata\local\programs\python\python37\lib\site-packages (1.0.12)

我不知道如何解决此错误。

任何人请帮助我...

预先感谢

我正在github中从事以下项目。 https://github.com/ShreyAmbesh/Traffic-Rule-Violation-Detection-System安装了项目所需的所有软件包,但是当我尝试运行...

pycharm openalpr
2个回答
1
投票

您需要将您的系统与(OpenALPR云)连接才能运行此项目。为此,您需要有权访问一个有效的OpenALPR帐户。如果您还没有,请在这里免费创建:https://cloud.openalpr.com/account/register


0
投票

我必须先安装python绑定,然后python才能与alpr对话。在Ubuntu 19.10中,这非常容易(请注意,alpr在某些版本的Ubuntu中已损坏,例如18.04):

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