I am trying to convert a python scripts as an executable file for Linux.
I use freeze.py script to convert a python script into an executable file.
I get this output:
~$ python freeze.py carbuddy.py
Traceback (most recent call last):
File "freeze.py", line 100, in <module>
import checkextensions
File "/home/darknight/checkextensions.py", line 6, in <module>
import parsesetup
ImportError: No module named parsesetup
(Where carbuddy.py
is the scripts which I would like to convert into an executable)