Skip to content
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

Iussue #1460 #1470

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions changelog.d/1460.docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
provide an alternative output after an installation that is less confusing.
2 changes: 1 addition & 1 deletion src/pipx/commands/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def _get_list_output(
)

if new_install and (exposed_binary_names or unavailable_binary_names):
output.append(" These apps are now globally available")
output.append(" These apps are now available")
output.extend(f" - {name}" for name in exposed_binary_names)
output.extend(
f" - {red(name)} (symlink missing or pointing to unexpected location)" for name in unavailable_binary_names
Expand Down