I've cloned some private python3 (can not share it). I build it like this:
cd project
python3 setup.py install
I can use the project using:
/Library/Frameworks/Python.framework/Versions/3.6/bin/tool --help
This shows the right output. But I want to use this like this:
python3 tool --help
Here I get:
/usr/local/bin/python3.6: can't find '__main__' module in 'tool'
I see there is a __main__
in the project. What is wrong?