# HelloDjango **Repository Path**: lm_is_dc/HelloDjango ## Basic Information - **Project Name**: HelloDjango - **Description**: django新手项目 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-11 - **Last Updated**: 2024-12-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 创建虚拟环境 ``` python -m venv my_venv ``` 激活虚拟环境: ``` cd my_venv cd Scripts activate ``` ### 导入库 ``` pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ### 运行 运行项目后,在浏览器输入:http://127.0.0.1:8000/wolf/ 即可访问。 ### 后台管理 浏览器访问:http://127.0.0.1:8000/admin/ ``` 账号:admin 密码:admin ```