autolab / Tango

Standalone RESTful autograding service
http://www.autolabproject.com/
Apache License 2.0
48 stars 60 forks source link

Path to Python interpreter is hard-coded in tango-cli.py #214

Closed arranstewart closed 2 years ago

arranstewart commented 3 years ago

The shebang line in clients/tango-cli.py doesn't seem very portable -- it's currently #!/usr/local/bin/python.

But on many systems the Python 3 interpreter isn't in this location (Ubuntu 18.04 for instance). A shebang line of #!/usr/bin/env python3 might be more portable.