创建一个新的 Python 文件 app.py如何在项目的根目录下创建一个 templates 文件夹
时间: 2024-11-25 18:16:10 浏览: 18
在pycharm中创建django项目的示例代码
要在项目的根目录下创建一个 `templates` 文件夹,并且创建一个新的 Python 文件 `app.py`,可以按照以下步骤进行:
### 步骤 1: 打开终端或命令行界面
打开你的终端(对于 Windows 用户是命令提示符或 PowerShell,对于 macOS 和 Linux 用户是终端)。
### 步骤 2: 导航到项目根目录
使用 `cd` 命令导航到你的项目根目录。例如,如果你的项目位于 `C:\Projects\my_project`,你可以运行:
```sh
cd C:\Projects\my_project
```
### 步骤 3: 创建 `templates` 文件夹
使用 `mkdir` 命令创建 `templates` 文件夹:
```sh
mkdir templates
```
### 步骤 4: 创建 `app.py` 文件
使用 `touch` 命令(macOS 和 Linux)或 `type nul > app.py` 命令(Windows)创建 `app.py` 文件:
- 对于 macOS 和 Linux:
```sh
touch app.py
```
- 对于 Windows:
```sh
type nul > app.py
```
### 步骤 5: 编辑 `app.py` 文件
你可以使用任何文本编辑器(如 VSCode、PyCharm、Sublime Text 等)来编辑 `app.py` 文件。例如,使用 VSCode:
```sh
code app.py
```
### 示例 `app.py` 内容
你可以在 `app.py` 中编写一些基本的内容,例如:
```python
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)
```
### 步骤 6: 创建 `index.html` 文件
在 `templates` 文件夹中创建一个 `index.html` 文件:
```sh
cd templates
touch index.html
```
### 示例 `index.html` 内容
你可以在 `index.html` 中编写一些基本的 HTML 内容,例如:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
</head>
<body>
<h1>Welcome to the Pet Weight Management System</h1>
</body>
</html>
```
完成以上步骤后,你的项目结构应该如下所示:
```
my_project/
├── app.py
└── templates/
└── index.html
```
这样,你就成功地在项目的根目录下创建了一个 `templates` 文件夹和一个 `app.py` 文件。
阅读全文