Skip to content

Commit 9284277

Browse files
committed
Simplify the installation method since we released on PyPI already
1 parent 1a1e113 commit 9284277

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ as applications written using a preview version of library may no longer work.
2727

2828
1. If you haven't already, [install and/or upgrade the pip](https://pip.pypa.io/en/stable/installing/)
2929
of your Python environment to a recent version. We tested with pip 18.1.
30-
2. For now, you can install from our latest dev branch, by `pip install git+https://github.com/AzureAD/microsoft-authentication-library-for-python.git@dev`
30+
2. As usual, just run `pip install msal`.
3131

3232
## Usage
3333

@@ -45,7 +45,7 @@ Acquiring tokens with MSAL Python need to follow this 3-step pattern.
4545
from msal import PublicClientApplication
4646
app = PublicClientApplication("your_client_id", authority="...")
4747
```
48-
48+
4949
Later, each time you would want an access token, you start by:
5050
```python
5151
result = None # It is just an initial value. Please follow instructions below.

0 commit comments

Comments
 (0)