79083627

Date: 2024-10-13 16:38:47
Score: 1.5
Natty:
Report link

The reason for the error: let me tell how i face with permission denied: python when i copy my old django project from linux ubuntu 23.04 to linux ubuntu 24.04 after activate venv then i want to run django server by this command:

(venv)-> python manage.py runserver

tatatatam! error - permission denied: python

solve: after try many ways finally i decide to delete venv folder and created new venv by:

python3 -m venv venv (for linux)

and install needed packages from requirements.txt (or you can do it manually)

pip install -r requirements.txt

and here we go! i can run django server by new created venv

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: mehrdad abdi