Skip to content

Update README.md to correct grammar #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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