Re: Path puzzle
- Reply: bob prohaska : "Re: Path puzzle"
- In reply to: bob prohaska : "Re: Path puzzle"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 05 Sep 2024 18:47:23 UTC
On Thu, 5 Sep 2024 11:37:06 -0700 bob prohaska <fbsd@www.zefox.net> wrote: > bob@pelorus:~ % head server_try > #!/usr/bin/python3.11 Bingo! On FreeBSD python3.11 will be in /usr/local/bin not /usr/bin. This is why the recommended shebang for python code is #!/usr/bin/env python3.11 Which is portable. -- Steve O'Hara-Smith <steve@sohara.org>