ModuleNotFoundError: No module named 'intuitlib'

434 views Asked by At

When I run the following code in PyCharm the 'ModuleNotFoundError: No module named 'intuitlib'' error occurs

from intuitlib.client import AuthClient

I installed intuit-oauth seemingly successfully with pip3

% pip3 install intuit-oauth 

I am using Python 3.11.4 and pip 23.2.1

VERY VERY new at this, this is my first question ever so please bear with me

1

There are 1 answers

3
Falkat On

Make sure you are using the correct python. You may have installed the package in the python of your IDE, but you are running the code with the system python.

The VENV python is saved with a name next to it, as in the example below:

IDE Python example