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