Skip to content

Highlight the install command #2088

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 2 commits into from
Jan 6, 2021
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
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,17 @@ Install-Module -Name PowerShellGet -Force
Exit
```

After installing `PowerShellGet`, you can simply run `Install-Module PSReadLine -AllowPrerelease -Force` to get the latest prerelease version of `PSReadLine`.
If you only want to get the latest stable version, run `Install-Module PSReadLine`.
After installing `PowerShellGet`, you can get the latest prerelease version of `PSReadLine` by running

```powershell
Install-Module PSReadLine -AllowPrerelease -Force
```

If you only want to get the latest stable version, run:

```powershell
Install-Module PSReadLine
```

>[!NOTE] Prerelease versions will have newer features and bug fixes, but may also introduce new issues.

Expand Down