Open Sai-Jahnavi-Bachu opened 7 months ago
What was the error you're getting. @Sai-Jahnavi-Bachu
you have to install within the venv
$ python devika.py
Traceback (most recent call last):
File "/Users/username/devika/devika.py", line 5, in
The issue has been resolved.
Cause: Python version issue
Resolution: Downgraded from v3.12.x to v3.11.x
Explanation: The requirements specify that the Python version must be below 3.12.
Additionally, if you encounter errors when running uv venv
in zsh, check the Python version in bash.
Thank you, all.
even though I installed the requirements.txt, it is still showing errors
Has the issue you were facing been resolved, @Sai-Jahnavi-Bachu?
(devika1) PS C:\Users\russe\Documents\GitHub\devika> python devika.py
Traceback (most recent call last):
File "C:\Users\russe\Documents\GitHub\devika\devika.py", line 5, in
(devika1) PS C:\Users\russe\Documents\GitHub\devika> python devika.py Traceback (most recent call last): File "C:\Users\russe\Documents\GitHub\devika\devika.py", line 5, in from gevent import monkey ModuleNotFoundError: No module named 'gevent' (devika1) PS C:\Users\russe\Documents\GitHub\devika> python --version Python 3.11.7
Have you tried the command
pip install gevent
Let me know @POWERFULMOVES
I tried pip install gevent but still got an error "No module named 'gevent'"
I tried python devika.py
and it gave me this error (In the venv environment and installed gevent already)
So then I tried python3 devika.py
and it worked.
It happened to me as well and it was because I forgot to run "uv pip install -r requirements.txt" before python3 devikya.py...
even though I installed the requirements.txt, it is still showing errors