项目3 web应用程序 第18章Django入门 完整步骤: mkdir test_env cd test_env/ python3 -m venv test_env virtualenv test_env source test_env/bin/activate (deactivate退出) django-admin startproject test_log cd test_log/ pip in
项目3 web应用程序
第18章Django入门
完整步骤:
mkdir test_env
cd test_env/
python3 -m venv test_env
virtualenv test_env
source test_env/bin/activate (deactivate退出)
django-admin startproject test_log
cd test_log/
pip install Django
python manage.py migrate
python manage.py runserver 0.0.0.0:8888
实验的时候遇到几个坑,记录如下: