當安裝完 python3 編譯器後,
Mac 中 sublime 並不會自動使用 python3 編譯,
而是使用 mac 內建 python2.7 編譯執行,
這時候需要到 Tools/Build system/New Build system… 新增python3
將內容改為:
1 2 3 4 5 |
{ "cmd": ["python3", "-i", "-u", "$file"], "file_regex": "^[ ]File \"(...?)\", line ([0-9]*)", "selector": "source.python" } |
如此一來就能以 python3 執行專案.
留言