Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

import "dotenv" could not be resolved

I am making a program in python that I plan to host on github. I have a .env file containing an api token. I tried to import it into my code like so:

first i installed the python-dotenv library by typing pip install python-dotenv in the command prompt. python-dotenv shows when i type pip list.

then in my code:

import os
from dotenv import load_dotenv

load_dotenv()

example = os.getenv('TOKEN')

from dotenv import load_dotenv gives the error Import "dotenv" could not be resolved Pylancereport (MissingImports) and my code will not run. Is there anything i'm doing wrong? How can i fix it?

like image 907
trs-k3tchup Avatar asked Dec 02 '25 04:12

trs-k3tchup


2 Answers

It seems you have installed python-env, when you really wanted to install python-dotenv. The former doesn't have the function you are trying to use on it's __init__.py file, that's why Pylancereport can't resolve it.

Solution: Do a pip install python-dotenv. Execute your code again and it should work.

like image 108
Jorge Alvarado Avatar answered Dec 03 '25 18:12

Jorge Alvarado


I faced the same issue and after little bit of researching I found that the issue was in using the system python interpreter instead of python interpreter inside the virtual environment which I have created. Since I was using VSCode editor. Therefore, following steps resolved the issue.

Step1: Hit Ctrl+P and type >Python: Select Interpreter click the 'Python: Select Interpreter' which appear in the search bar. enter image description here

Step2:Click the Enter interpreter path enter image description here

Step3: Now browse your system and select the python interpreter inside your virtual enviroment folder venvFoderName/Scripts/Python

like image 45
hamid Avatar answered Dec 03 '25 19:12

hamid