installation is broken on MacOS ?
See original GitHub issueDescribe the bug
Hi ! I attempted to install pipx following the instructions on Pypi
How to reproduce
brew install pipx
pipx ensurepath
output
Traceback (most recent call last):
File "/usr/local/Cellar/pipx/0.15.4.0/libexec/bin/pipx", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
Expected behavior Successful install ? 😃
my specs
macOS version Catalina 10.15.6 Homebrew 2.4.9
I’m happy to provide more specific details about my env if needed !
Issue Analytics
- State:
- Created 3 years ago
- Comments:22 (12 by maintainers)
Top Results From Across the Web
How to Fix a Damaged macOS Installer - MacRumors
To fix the damaged installer, you should just download the installer again. Doing so will also ensure that you have all of the...
Read more >If an error occurred while updating or installing macOS
Use Disk Utility to repair your startup disk. Then try updating or installing macOS again. Install from macOS Recovery. Install while your Mac ......
Read more >How to Fix “application is damaged, can't be used to install ...
First click the “Apple” icon on the top left of the desktop menu –> System preference –> Date & Time –> under “Date...
Read more >[FIX] Application is Damaged and Can't be Used to Install ...
[FIX] Application is Damaged and Can't be Used to Install macOS · Method 1: Change Mac's Date · Method 2: Delete the Property...
Read more >6 Fix “Application is Damaged, can't be used to install macOS ...
Method 1: Delete and Reinstall macOS System Installers ... The simplest way to eliminate the Error, “This copy of the Install macOS .app ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@AlJohri knows more than I do about this, but among the advantages:
brew install pipxinstalls pipx and its dependencies to its own isolated environment, so it doesn’t clutter up your main python installed packages (e.g. when you typepip list).python3 -m pip install pipxthis can work just fine most of the time, fail horribly if the system python is read-only, cause random issues if pipx requires dependencies that are in conflict with other packages you’ve installed. We have not solved yet how to bootstrap pipx itself (something likecurl https://get-pipx.zipapp && python3 get-pipx.zipappto install pipx). Until we do using a operating system installer is your safest option.