You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The from.pyand to.py files are executed by /usr/bin/env python. On systems where Python 2 is the default interpreter, the programs don't run correctly, at least for me.
Simply replacing the shebang with /usr/bin/env python3 fixed my problem and made the programs do the job 👍 .
The text was updated successfully, but these errors were encountered:
The
from.py
andto.py
files are executed by/usr/bin/env python
. On systems where Python 2 is the default interpreter, the programs don't run correctly, at least for me.Simply replacing the shebang with
/usr/bin/env python3
fixed my problem and made the programs do the job 👍 .The text was updated successfully, but these errors were encountered: