Skip to content

Commit

Permalink
Add PowerShell snippets for postinstall
Browse files Browse the repository at this point in the history
  • Loading branch information
tats-u committed Jul 17, 2022
1 parent 915d307 commit 07185e6
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion install-poetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,21 @@ def _get_win_folder_with_ctypes(csidl_name):
You can execute `set -U fish_user_paths {poetry_home_bin} $fish_user_paths`
"""

POST_MESSAGE_CONFIGURE_WINDOWS = """"""
POST_MESSAGE_CONFIGURE_WINDOWS = """
You can choose and execute one of the following commands in PowerShell:
A. Appends the bin directory to your user environment variable `PATH`:
```
[Environment]::SetEnvironmentVariable("Path", [Environment]::GetEnvironmentVariable("Path", "User") + ";{poetry_home_bin}", "User")
```
B. Tries to appends the bin directory to PATH every when you run PowerShell (>=6 recommended):
```
echo 'if (-not (Get-Command poetry -ErrorAction Ignore)) {{ $env:Path += ";{poetry_home_bin}" }}' | Out-File -Append $PROFILE
```
"""


class PoetryInstallationError(RuntimeError):
Expand Down

0 comments on commit 07185e6

Please sign in to comment.