-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compatibility issue with openbsd [easy fix] #2
Comments
a better way to fix it would be to change the shebang using the |
Gonna fix this asap, thanks for reporting. |
Fixed by changing the shebang to /usr/bin/env python3 , tested on freebsd (same python install path) just in case and its good. |
Im gonna close this issue since its now inactive. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi there is a small compatibility issue with OpenBSD, in your python files where the shebang calls on
#!/usr/bin/python3
, however in OpenBSD's default install python3 is located in/usr/local/bin/python3
. you can fix this in the setup.sh by having an if statement that checks if the operating system is OpenBSD and if it is changing the shebang to/usr/local/bin/python3
, a way to find the OS in lowercase charterers is by usinguname | tr '[:upper:]' '[:lower:]'
. hope you are doing well.The text was updated successfully, but these errors were encountered: