Проект django, клонированный с github

    Here am providing the error I am facing during run the project, firstly am cloned this 
project from Github and further add the .env file after that run the program and I get this 
error,
    
    please tell me the complete steps for cloning the project from Github and also the steps 
 to run that project 

    /*****************************************************************************/
    Exception in thread django-main-thread:
    Traceback (most recent call last):
      File "C:\Users\its simi\AppData\Local\Programs\Python\Python310\lib\site- 

packages\django\apps\config.py", строка 245, in create app_module = import_module(app_name) Файл "C:\Users\its simi\AppData\Local\Programs\Python\Python310\lib\importlib_init_.py", строка 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) Файл "", строка 1050, в _gcd_import Файл "", строка 1027, в _find_and_load Файл "", строка 1004, в _find_and_load_unlocked ModuleNotFoundError: Нет модуля с именем 'base'

Возможно:

git clone https://github.com/xxx/django-project
cd django-project
python -m venv venv
source venv/*/activate
pip install django
python manage.py runserver
Вернуться на верх