-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Force usage of Python 3 #17
base: master
Are you sure you want to change the base?
Conversation
Thanks for the pr! What do you think? |
Newer Debian versions only have Python 3 installed out-of-the-box:
So the shebang currently in this script doesn't work properly. Since Python 2 is EOL and everyone should be migrating to Python 3, IMO it makes sense to change the shebang to hard-code |
Just found this because even though latest Ubuntu has python2.7 they took out the python-requests 2.7 package...couldn't figure out if/how to make this run with python3 so I had to do a hacky fix to the imports :/ |
This can be solved by installing the |
|
closes: |
On Debian10,
python
automatically points to Python 2.Fixes #14 as well.