• Xcode搭建Python编译环境


    Xcode搭建Python编译环境

    1. 确认安装了python
    zx:~ zx$ which python
    /usr/bin/python

    2.打开Xcode,新建工程,选择 "Other"| "Externail Building System".

    3.BuildTool填入 "/usr/bin/python"

    4.先建一个test.py文件,输入

    print "hello,world";

    5.EditScheme中,选中Run后需要做三件事情:

    5.1 Info中,BuildConfiguration选择Debug; Executable选择/usr/bin/python文件;不勾选"Debug Executable"

    5.2 Arguments中,启动参数添加文件名"test.py"

    5.3 Options中,勾选Working Directory下的自定义目录,然后选择test.py所在的目录.

    1. over,运行就可以得到 hello,world.

    参考资料: https://www.youtube.com/watch?v=d6VRvLjcPfU

  • 相关阅读:
    Codeforces Global Round 2
    BZOJ4762 最小集合(动态规划+容斥原理)
    BZOJ4621 Tc605(动态规划)
    Luogu5289 十二省联考2019皮配(动态规划)
    Luogu5290 十二省联考2019春节十二响(贪心+启发式合并)
    Luogu5283 十二省联考2019异或粽子(trie/可持久化trie+堆)
    Luogu5284 十二省联考2019字符串问题(后缀数组+拓扑排序+线段树/主席树/KDTree)
    【转】Android的线程使用来更新UI----Thread、Handler、Looper、TimerTask
    android Handler更新UI
    Android 四大组件之Activity生命周期
  • 原文地址:https://www.cnblogs.com/xilifeng/p/5027804.html
Copyright © 2020-2023  润新知