When I create programs executables I have suffered with this, and if anyone knows how to help, I thank you. Follow the command line that I usually use to build at the prompt.
python 'filename' .py build
When I create programs executables I have suffered with this, and if anyone knows how to help, I thank you. Follow the command line that I usually use to build at the prompt.
python 'filename' .py build
The executable binary of Python
version 2.7 usually has no suffix:
$ python --version
Python 2.7.5
The executable binary of Python
version 3.x has suffix to avoid conflicts:
$ python3 --version
Python 3.4.5
If you really want to use version 3 to do something, use the corresponding executable.