From b6a23209e32024545e4c0fe43f1bcc425604555f Mon Sep 17 00:00:00 2001 From: Luke Slevinsky Date: Tue, 20 Aug 2019 16:13:11 -0700 Subject: [PATCH] Add new dependency to docs (#132) * add new dependency * add to requirements.txt --- docs/developers-setup.md | 4 ++++ docs/install.md | 1 + src/requirements.txt | 1 + 3 files changed, 6 insertions(+) diff --git a/docs/developers-setup.md b/docs/developers-setup.md index 1c15f853b..9f0cb89d7 100644 --- a/docs/developers-setup.md +++ b/docs/developers-setup.md @@ -34,6 +34,10 @@ - Run the command in a console : `pip install requests` +- Application Insights + + - Run the command in a console : `pip install applicationinsights` + - VS Code - Python extension for VS Code (download from VS Code market place) diff --git a/docs/install.md b/docs/install.md index 2dc810b9a..1d011f14d 100644 --- a/docs/install.md +++ b/docs/install.md @@ -28,6 +28,7 @@ _Note: You need to install all the dependencies in order to use the extension._ - Pywin32 : `pip install pywin32` - Python-Socketio : `pip install python-socketio` - Requests : `pip install requests` +- Application Insights: `pip install applicationinsights` ## How to use the Extension diff --git a/src/requirements.txt b/src/requirements.txt index 996dc964d..8750fe81f 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -2,3 +2,4 @@ playsound pytest applicationinsights python-socketio +requests