Skip to content

Commit

Permalink
support for python 3 only
Browse files Browse the repository at this point in the history
Ubuntu comes without python 2 but /usr/bin/python doesn't exist, only /usr/bin/python3
Adding /usr/bin/python to the list see #118
  • Loading branch information
tovmeod authored and saghul committed Oct 16, 2019
1 parent bf34f22 commit d106eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonz-install
Expand Up @@ -2,7 +2,7 @@

shopt -s extglob

PYTHONS="`command -v python` /usr/bin/python /usr/bin/python2"
PYTHONS="`command -v python` /usr/bin/python /usr/bin/python2 /usr/bin/python3"
CURL=`command -v curl`
FETCH=`command -v fetch`

Expand Down

0 comments on commit d106eee

Please sign in to comment.