Skip to content

Commit

Permalink
Merge pull request openai#34 from CodeMaster7000/patch-1
Browse files Browse the repository at this point in the history
Update README.md to correct grammar
  • Loading branch information
logankilpatrick committed Mar 8, 2023
2 parents 5ff0139 + 36ef470 commit 6feb9c5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,38 @@ This is an example pet name generator app used in the OpenAI API [quickstart tut

## Setup

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

2. Clone this repository
2. Clone this repository.

3. Navigate into the project directory
3. Navigate into the project directory:

```bash
$ cd openai-quickstart-python
```

4. Create a new virtual environment
4. Create a new virtual environment:

```bash
$ python -m venv venv
$ . venv/bin/activate
```

5. Install the requirements
5. Install the requirements:

```bash
$ pip install -r requirements.txt
```

6. Make a copy of the example environment variables file
6. Make a copy of the example environment variables file:

```bash
$ cp .env.example .env
```

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

8. Run the app
8. Run the app:

```bash
$ flask run
Expand Down

0 comments on commit 6feb9c5

Please sign in to comment.