Skip to content
Home » No module named ‘dotenv’ python

No module named ‘dotenv’ python

To solve no module named ‘dotenv’ python error follow below methods. Install the dotenv module using the below command.

ERROR LOG

ERROR : No module named 'dotenv'

How to solve no module named ‘dotenv’ python ?

Refer to the given methods to solve the issue.

Method 1:

Seems like the python-dotenv module is missing. If you want to install it using python then use:

python3 -m pip install python-dotenv

Method 2 :

Also, try installing using the below command if the above command doesn’t work.

sudo pip3 install python-dotenv

Hope the above solution works.

Also read : AttributeError: module ‘seaborn’ has no attribute ‘histplot’