Skip to content
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

#!/usr/bin/env python3 #19

Open
zerberous opened this issue Dec 9, 2023 · 2 comments
Open

#!/usr/bin/env python3 #19

zerberous opened this issue Dec 9, 2023 · 2 comments

Comments

@zerberous
Copy link

вместо первой строки
#!/usr/bin/python3

для совместимости лучше указать
#!/usr/bin/env python3

@dvjdjvu
Copy link
Owner

dvjdjvu commented Dec 11, 2023

Проведите ЛИКБЕЗ, почему так лучше(всегда по аналогии с bash скриптами делал)?

@virtual-machinist
Copy link

Вкратце если у пользователя Python установлен не в /usr/bin/python3, то скрипт не будет запускаться сам через ./main.py, а нужно будет пользоваться /my/path/to/python3 main.py ... Трюк с env позволяет избежать этого, но будет выбран первый Python 3 в пути.

Если интересно, можно почитать более развёрнуто тут.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants