Closed Paragkk closed 3 weeks ago
Hi DB will be created when you start the application in your machine for the first time. It is not a good idea and practice to share the DB in the repo
Thanks a lot for your response. It seems the db is not getting created due to some permission issue. I will have to dig further.
Let me know which OS you are trying to Integrate openalgo. Only for Linux it demands permissions.
Running the Python script using the full path versus running it from the directory can cause issues, especially with relative paths and imports. Here's why:
When you run python3 "c:\Users\parag\PyCodes\AWS codes\openalgo\app.py"
from a different directory:
os.getcwd()
) to the directory you're running the command fromWhen you run python3 app.py
from the project directory:
Here's how to fix this:
cd "c:\Users\parag\PyCodes\AWS codes\openalgo"
python3 app.py
Thanks a lot. its working now. 👯♂️
I'm glad you are able to fix the issue!
openalgo.db file is not present in the repo. Where can i get the empty db file please