You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing `PowerShellGet`, you can simply run `Install-Module PSReadLine -AllowPrerelease -Force` to get the latest prerelease version of `PSReadLine`.
54
-
If you only want to get the latest stable version, run `Install-Module PSReadLine`.
53
+
After installing `PowerShellGet`, you can get the latest prerelease version of `PSReadLine` by running
54
+
55
+
```powershell
56
+
Install-Module PSReadLine -AllowPrerelease -Force
57
+
```
58
+
59
+
If you only want to get the latest stable version, run:
60
+
61
+
```powershell
62
+
Install-Module PSReadLine
63
+
```
55
64
56
65
>[!NOTE] Prerelease versions will have newer features and bug fixes, but may also introduce new issues.
0 commit comments