Build your app according to the official Django Tutorial https://docs.djangoproject.com/ja/2.2/intro/tutorial01/
I installed Django in a virtual environment with Anaconda.
> conda install django
> python -m django --version
2.2.5
According to Django official
If you're new to Django, you'll need to do the initial setup. Typically, you'll auto-generate the code that makes up your Django project. A project is a collection of settings for individual Django instances, such as database settings, Django-specific options, and application-specific settings.
Make a project immediately.
> django-admin startproject mysite
Start the created project.
> cd mysite
> python manage.py runserver
In this state, access http: // localhost: 8000.
For the time being, I knew that Django could be used in the current environment.
Recommended Posts