Created
April 15, 2023 10:39
-
-
Save Aviksaikat/d38ff126141f9f1e58329200b01e9015 to your computer and use it in GitHub Desktop.
fix Pipx errors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -ne 1 ]; then | |
echo "Error: Please provide exactly one argument." | |
echo "Usage: {0} <package name>" | |
exit 1 | |
fi | |
rm -rf ~/.local/pipx/ | |
# pip3 uninstall pipx | |
pipx install $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment