2015/07/04

【Python】在XCode上寫python




Step 1. 

打開Xcode,建立new project。
選擇 OS X -> other -> external build system



Step 2.

Build tool 改成你的 python位子
如果你不知道,打開 terminal 輸入 $ which python 就可以知道了
大部份都會是 /usr/bin/python



Step 3. 

打開Product -> Scheme -> Edit scheme
點Run -> Info.



Step 4.

Executable 那邊點選other
會跑出視窗,按command+shift+g,輸入剛剛你的python位址
點選python
把debug executable取消勾選

Step 5.

到 Run -> Arguments -> Arguments Passed On Launch 那邊加入新argument
名字是你的 ($任意名稱).py



Step 6.

到 Run -> Options -> Working Directory
改成你的project 位址



Step 7.

在project下建立新的empty file
名稱跟你剛剛新增的argument相同,不要忘了加.py



Step 8.

可以開始coding了!!