Good day! I created a small script, put it on github, now I want to add it to pypi.python.org, but there is a problem. In the main file, the first line contains the declaration:
#!/usr/bin/python3 But when installing via pip in / usr / local / bin, a file is created, the first line of which is:
#!/usr/bin/python When adding changes to the original file and re-installing the changes are saved, but the first line is still without the "3", and the script only works with the 3rd version :(
How to be?