-
When I try to install the client through pipx I get the following message: "No apps associated with package python3-discogs-client." The pipx documentation might provide an explanation but I'm not knowledgeable enough to really understand what it means. What's the best way to install discogs_client if I can't use pip? Thank you! (I installed Python with Homebrew and it seems that pipx is the recommended way to install Python packages) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Is this the exact error message you get: https://stackoverflow.com/questions/60032087/why-my-package-cant-be-installed-with-pipx I'm not very familiar with pipx, and only can repeat what's said there: pipx seems to look for entry_points section in our setup.py. We dont have that because we are a python library and not an executable (commandline) tool. Maybe I can help in another way: Why can't u use pip? |
Beta Was this translation helpful? Give feedback.
I created a virtual environment and "pip installed" discogs_client there. Works like a charm.
Thank you for your support!