Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dotenv #198

Open
ronnyrr97 opened this issue Mar 26, 2025 · 5 comments
Open

dotenv #198

ronnyrr97 opened this issue Mar 26, 2025 · 5 comments
Labels
bug Something isn't working

Comments

@ronnyrr97
Copy link

Traceback (most recent call last):
File "C:\Users\ronny\OneDrive\Documents\GitHub\ai-hedge-fund\src\main.py", line 3, in
from dotenv import load_dotenv
ModuleNotFoundError: No module named 'dotenv'

@ronnyrr97 ronnyrr97 added the bug Something isn't working label Mar 26, 2025
@shrivdar
Copy link

the error that you're getting is solely because you don't have the dotenv module installed in your environment; so, just use pip to install the dotenv module (command would be "pip install dotenv").

@mweber89
Copy link

Try
poetry remove python-dotenv
poetry add python-dotenv

@dhanush-aravindh
Copy link

It is necesarry to run the environment variables where you store your API Keys and other secret keys in the file (.env file) . In order to load is you should install the dotenv module via the requirements.txt file. In the requirements.txt file add the module name and run the file using the below command:

pip install -r requirements.txt

Always create a virtual environment to run the Project and so that it is easy for you update and track the changes in the code. Always try to build a good file structure.

@YZAJgit
Copy link

YZAJgit commented Mar 28, 2025

@dhanush-aravindh how i add dotenv module. what you mean by requirements.txt? could you give detail?

@dhanush-aravindh
Copy link

In the real world, in all production-grade environments, we need to use requirements.txt, which is a text file. It contains the names, and you can also add the specific version of modules that we use in the project. Once we declare this file. Then you install all the modules and the packages that we want for our project. For Example:

requirements.txt

  1. Pandas
  2. Numpy
  3. ...

The above is an example of a requirements.txt file. To run this file, you have to give the command below in your command prompt, namely:

pip install -r requirements.txt

It will install all the packages and modules mentioned in the text file. All real-world applications follow this file structure to avoid errors.

Before running this, you have to create a virtual environment and activate it. The code should be modular in structure to easily read and write.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

5 participants