Last active
May 6, 2019 14:15
-
-
Save bengerman13/1fda9e5929a2305a3abde0a0b6868e4f to your computer and use it in GitHub Desktop.
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 -ex | |
| PYTHON3=$(which python3) | |
| temp=$(mktemp -d) | |
| pushd $temp | |
| python3 -m venv pipx | |
| pipx/bin/pip install pipx | |
| pipx/bin/pipx install --python ${PYTHON3} pipx | |
| popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment