Closed Jellby closed 8 years ago
The shebang line in penny is
#!/usr/bin/python
this doesn't work in my system, because python by default is v. 2.7 (it won't work either if python is installed in /bin/python or /usr/local/bin/python). I suggest:
python
/bin/python
/usr/local/bin/python
#!/usr/bin/env python3
see here: http://stackoverflow.com/questions/6908143/should-i-put-shebang-in-python-scripts-and-what-form-should-it-take
The shebang line in penny is
this doesn't work in my system, because
python
by default is v. 2.7 (it won't work either if python is installed in/bin/python
or/usr/local/bin/python
). I suggest:see here: http://stackoverflow.com/questions/6908143/should-i-put-shebang-in-python-scripts-and-what-form-should-it-take