ga('set', 'anonymizeIp', 1);
Categories: CodingPython

[python] Mac Sublime 新增 python3 build system

Share

當安裝完 python3 編譯器後,

Mac 中 sublime 並不會自動使用 python3 編譯,

而是使用 mac 內建 python2.7 編譯執行,

這時候需要到 Tools/Build system/New Build system… 新增python3

將內容改為:

{
 "cmd": ["python3", "-i", "-u", "$file"],
 "file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
 "selector": "source.python"
 }

如此一來就能以 python3 執行專案.

Jys

Published by
Jys

Recent Posts

[python] Flask Create RESTful API

This article gi... Read More

3 年 前發表

[Javascript] 新增/刪除JSON中key值

在web訊息交換常會需要對JS... Read More

3 年 前發表

[JAVA] SQL Server Connection

本文介紹JAVA連線SQL s... Read More

3 年 前發表