I have some python code that I have written on my windows computer and runs and works fine. I am trying to get that same code to work on my Linux computer in Visual Studio Code. I have installed all the libraries that I intend to import but I am getting an error saying there is no module with that name.
I am using this in my terminal in my virtual environment:pip install imutils
It is giving me this error:import imutils ModuleNotFoundError: No module named 'imutils'
When I try and install imutils it tells me the requirement is already satisfied and gives me a path directory.
I have tried installing imutils, reinstalling, creating another virtual environment.