Skip to content

Commit 6feb9c5

Browse files
Merge pull request openai#34 from CodeMaster7000/patch-1
Update README.md to correct grammar
2 parents 5ff0139 + 36ef470 commit 6feb9c5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,38 @@ This is an example pet name generator app used in the OpenAI API [quickstart tut
44

55
## Setup
66

7-
1. If you don’t have Python installed, [install it from here](https://www.python.org/downloads/)
7+
1. If you don’t have Python installed, [install it from here](https://www.python.org/downloads/).
88

9-
2. Clone this repository
9+
2. Clone this repository.
1010

11-
3. Navigate into the project directory
11+
3. Navigate into the project directory:
1212

1313
```bash
1414
$ cd openai-quickstart-python
1515
```
1616

17-
4. Create a new virtual environment
17+
4. Create a new virtual environment:
1818

1919
```bash
2020
$ python -m venv venv
2121
$ . venv/bin/activate
2222
```
2323

24-
5. Install the requirements
24+
5. Install the requirements:
2525

2626
```bash
2727
$ pip install -r requirements.txt
2828
```
2929

30-
6. Make a copy of the example environment variables file
30+
6. Make a copy of the example environment variables file:
3131

3232
```bash
3333
$ cp .env.example .env
3434
```
3535

36-
7. Add your [API key](https://beta.openai.com/account/api-keys) to the newly created `.env` file
36+
7. Add your [API key](https://beta.openai.com/account/api-keys) to the newly created `.env` file.
3737

38-
8. Run the app
38+
8. Run the app:
3939

4040
```bash
4141
$ flask run

0 commit comments

Comments
 (0)