Closed FranklinYu closed 5 years ago
It sounds like the launcher scripts were a mistake in the first place. What do you recommend? Should I just get rid of the scripts and add a shebang line?
Did you mean that you would like to add another Python script to replace enjarify.bat
? Or to add the shebang to enjarify/main.py
?
I'm not sure what's the best way to do so. If we keep the batch file, then simply replace python3
with py -3
(without changing any existing option) will do the trick. If we instead create a Python script, then I think there are more than one way to do it.
Actually I'm trying packaging enjarify with Chocolatey, a package manager in Windows. That is easier than download from GitHub, since this package is not on PyPI (right?).
Closed by Storyyeller/enjarify#10
Currently
enjarify.bat
callspython3
, but Python installer doesn't installpython3.exe
. According to PEP 397, the preferred way is to use Python launcher.