前几天我遇到了一个名为Jython的Python实现.
使用Jython,您可以使用Python编写Java应用程序并将它们编译为纯Java.
我想知道:Android编程是用Java完成的.
那么,是否可以使用Jython制作Android应用程序?
所以,例如,我有一个列表:myList=["asdf","ghjk","qwer","tyui"]
我还有一个我要删除的项目的索引号列表:( removeIndexList=[1,3]我想从上面的列表中删除项目1和3)
最好的方法是什么?
我只是想安装kivy来测试它并制作一些应用程序
我安装了cython和其他东西
然后我输入终端(ubuntu 12.04):
sudo easy_install kivy
Run Code Online (Sandbox Code Playgroud)
作为答案我得到了这个:
Searching for kivy
Reading http://pypi.python.org/simple/kivy/
Best match: Kivy 1.2.0
Downloading http://pypi.python.org/packages/source/K/Kivy/Kivy-1.2.0.tar.gz#md5=468da8a353c2ea4936eb92d71403c960
Processing Kivy-1.2.0.tar.gz
Running Kivy-1.2.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-rcrkeK/Kivy-1.2.0/egg-dist-tmp-xdOqxi
[INFO ] Kivy v1.2.0
WARNING: GLES 2.0 headers are not found
Fallback to Desktop opengl headers.
Build configuration is:
* use_opengl_es2 = False
* use_glew = False
* use_opengl_debug = False
* use_mesagl = False
Generate config.h
Generate config.pxi
In file included from /tmp/easy_install-rcrkeK/Kivy-1.2.0/kivy/graphics/texture.c:273:0:
/tmp/easy_install-rcrkeK/Kivy-1.2.0/kivy/graphics/gl_redirect.h:38:22: fatal error: GL/gl.h: El fitxer o directori no …Run Code Online (Sandbox Code Playgroud) 我想在我的ubuntu 12.04上安装cython,然后进入终端
sudo easy_install cython
Run Code Online (Sandbox Code Playgroud)
作为回应,我收到以下错误:
Searching for cython
Reading http://pypi.python.org/simple/cython/
Reading http://www.cython.org
Reading http://cython.org
Best match: Cython 0.16
Downloading http://www.cython.org/release/Cython-0.16.zip
Processing Cython-0.16.zip
Running Cython-0.16/setup.py -q bdist_egg --dist-dir /tmp/easy_install-VzJ0lH/Cython-0.16/egg-dist-tmp-BMJs3p
Compiling module Cython.Plex.Scanners ...
Compiling module Cython.Plex.Actions ...
Compiling module Cython.Compiler.Lexicon ...
Compiling module Cython.Compiler.Scanning ...
Compiling module Cython.Compiler.Parsing ...
Compiling module Cython.Compiler.Visitor ...
Compiling module Cython.Compiler.FlowControl ...
Compiling module Cython.Compiler.Code ...
Compiling module Cython.Runtime.refnanny ...
warning: no files found matching '*.pyx' under directory 'Cython/Debugger/Tests'
warning: no files found matching '*.pxd' …Run Code Online (Sandbox Code Playgroud) Github 具有解释提交消息中各种内容的功能。例如,Co-authored-by: name <email>标签指定多个作者,然后显示在 github 提交界面中。同样,指定closes #xxx有效的问题编号会自动将问题标记为已在 github 上修复,并提供指向修复提交的链接。
我正在寻找 github 在提交消息中解释的内容的全面列表,以便更好地控制当我推送某些提交时发生的情况,并避免记错某些内容的格式,导致其在界面中错误显示。或者,也可以提供常见提交参数及其格式和效果的列表(包括比我已经列出的更多的参数)。