Skip to content
Closed
Changes from 1 commit
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
Next Next commit
update pip install into copy-able command chunk
  • Loading branch information
bhavaniravi authored Sep 10, 2020
commit 94499c3aead916c2ccd255a3061d4f385e89546c
9 changes: 6 additions & 3 deletions articles/python/bot-builder-python-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ This quickstart walks you through building a bot by using the Python Echo Bot te

## Create a bot
1. Open a terminal and navigate to the folder where you're saving your bot locally. Install the necessary packages by running the following commands:
- `pip install botbuilder-core`
- `pip install asyncio`
- `pip install cookiecutter`

```cmd
pip install botbuilder-core
pip install asyncio
pip install cookiecutter
```

The last package, cookiecutter, will be used to generate your bot. Verify that cookiecutter was installed correctly by running `cookiecutter --help`.

Expand Down