#!/usr/bin/python3
only works if python3 is found in /usr/bin
. #!/usr/bin/env python3
is more flexible. See e.g. this SO question.
On Monday, June 12, 2023, from 9.00 to 10.00 am there will be a maintenance with a short downtime of the GitLab service.
#!/usr/bin/python3
only works if python3 is found in /usr/bin
. #!/usr/bin/env python3
is more flexible. See e.g. this SO question.