当前位置: 首页 > 工具软件 > Kivy iOS > 使用案例 >

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

卢子民
2023-12-01

yeayee

------>更多技巧------>更多源码------>www.yeayee.com

转载:https://www.cnblogs.com/yeayee/p/5420858.html

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)

 

1

python -m pip install --upgrade pip wheel setuptools

  

 

Install the dependencies (skip gstreamer (~90MB) if not needed, see Kivy’s dependencies):(安装环境依赖:gstreamer这货大约90M,主要是用来调用摄像头,视频等设备或播放,遇到了想装再说,毕竟现阶段处于试水阶段)

 

1

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:

 

1

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本人安装没有问题,人品还行!)

 类似资料: