I'm running Python 3.7.1 and have Imutils 0.5.2 installed correctly on Ubuntu 18.04.
I'm trying to import imutils as shown below:
from imutils.video import VideoStream
from imutils.video import FPS
import numpy as np
import argparse
import imutils
import time
import cv2
However, when it comes to launching the code I get:
Traceback (most recent call last):
File "real_time_object_detection.py", line 3, in <module>
from imultils.video import FPS
ModuleNotFoundError: No module named 'imultils'
Notice that Python (?) has added an 'l' into imutils making it imuLtils! Which I am guessing is why the code will not run, if it's trying to open the module!
I've rewritten the code, restarted, uninstalled and reinstalled imutils!
Why is it doing this!? and how can I stop it from doing this?
Thank you for any help!