I found that on my ubuntu15.10, I can not execute a *.pyc file like
$ echo 'print "Hello"' > print.py
$ chmod +x print.py
$ python -c 'import print'
$ ./print.pyc
But on another PC (ubuntu15.10 too), it can be executed. In this link( https://superuser.com/questions/73615/how-do-pyc-files-execute/73649#73649), I know that it was because my system has not a binfmt_misc entry for .pyc files. So my question is how to add it.