• Python 开发安卓Android及IOS应用库Kivy安装尝试


    Python 开发安卓Android及IOS应用库Kivy安装尝试:

    先来看看这货可以用来制作什么应用:

    1. Create a package for Windows
    2. Create a package for Android
    3. Creating packages for OS X
    4. Create a package for IOS

    逆天的节奏啊,虽然600+页的英文文档,python3+还在on the way ,觉得这货潜力无穷啊。

    当然,缺点就是要安装各种环境依赖,尤其是在win7平台下,估计会比较恼火,可以慢慢尝试。

    Installation¶(安装)

     
    Now that python is installed, open the Command line and make sure python is available by typing python --version. Then, do the following to install.
    (首先你要确定Python已经安装,打开win+R打开Command,确保python是在2.7下运行,然后按照一下步骤操作。另,建议建立虚拟环境进行开发,好处就不赘述;用python2.7的原因是在生成安卓APP的时候,暂且不支持高版本的python。)
     
    Ensure you have the latest pip and wheel:(确保你安装的是最新的pip和wheel)
     
    python -m pip install --upgrade pip wheel setuptools
    

      

     
    Install the dependencies (skip gstreamer (~90MB) if not needed, see Kivy’s dependencies):(安装环境依赖:gstreamer这货大约90M,主要是用来调用摄像头,视频等设备或播放,遇到了想装再说,毕竟现阶段处于试水阶段)
     
    python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew kivy.deps.gstreamer --extra-index-url https://kivy.org/downloads/packages/simple/
    

     

     
    (赶脚这玩意安装就跟Flask的扩展是一个思路,也可以用requirements.txt吧)
     
    Install kivy:
     
    python -m pip install kivy
    

       

    (安装kivy)
     
    That’s it. You should now be able to import kivy in python.(可以在python下尝试一下能不能import,会出现3条友好的warning,看看即可)
     
    NoteI(注意)
    If you encounter any permission denied errors, try opening the Command prompt as administrator and trying again.
    (如果中途安装出现了什么幺蛾子,建议切换至管理员权限,在进行以上操作,PS本人安装没有问题,人品还行!)
     
     
  • 相关阅读:
    7月的尾巴,你是XXX
    戏说Android view 工作流程《下》
    “燕子”
    Android开机动画bootanimation.zip
    戏说Android view 工作流程《上》
    ViewController里已连接的IBOutlet为什么会是nil
    My first App "Encrypt Wheel" is Ready to Download!
    iOS开发中角色Role所产生的悲剧(未完)
    UIScrollView实现不全屏分页的小技巧
    Apple misunderstood my app,now my app status changed to “In Review”
  • 原文地址:https://www.cnblogs.com/yeayee/p/5420858.html
Copyright © 2020-2023  润新知