質問

I read that since Kivy 1.8 I can you Python 3.3 instead of 2.7 but although I have Python 3.3 installed the kivy command still uses 2.7.

Can I manually modify kivy bash script and change the last line exec $(python -c "import os, sys; ... to point to my Python 3.3 installation? There's a similar question about Python 3.4 but this should not be supported right now.

So, what's the recommended way?

役に立ちましたか?

解決

The kivy packages for OSX use the default system Python: 2.7. All the dependencies we've compiled are based on the ABI of system Python 2.7.

Using another Python, or 3.3, will just not work. Python is great when you stay in pure python, but we are using lot of underlaying libraries, which requires compilation too. We'll try to release a 3.4 version somehow.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top