Skip to content

Commit 1f39cb2

Browse files
authored
Switch the two different installation methods
The first one is for installing dependencies of this sample. It would contain MSAL AND some 3rd-party modules. The second one is in an additional "More information" section on how to install MSAL only. We might even consider to remove the 2nd installation method, so that it would potentially confuse readers with the first method.
1 parent 3aaf8b9 commit 1f39cb2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/active-directory/develop/quickstart-v2-python-daemon.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ https://login.microsoftonline.com/Enter_the_Tenant_Id_Here/adminconsent?client_i
138138
139139
#### Step 5: Run the application
140140

141-
You'll need to install MSAL Python once
141+
You'll need to install the dependencies of this sample once
142142

143143
```console
144-
pip install msal
144+
pip install -r requirements.txt
145145
```
146146

147147
Then, run the application via command prompt or console:
@@ -164,7 +164,7 @@ You should see on the console output some Json fragment representing a list of u
164164
You can install MSAL Python by running the following pip command.
165165

166166
```powershell
167-
pip install -r requirements.txt
167+
pip install msal
168168
```
169169

170170
### MSAL initialization

0 commit comments

Comments
 (0)