Question about Python in Unity builds #33
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
The general idea for including a Python library in a build is to place the Python library in the Unfortunately, this library depends on IronPython which does not yet have support for Python 3.x. Only Python 2.x is supported at the moment. You can find the status of IronPython3 development here. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.

The general idea for including a Python library in a build is to place the Python library in the
StreamingAssetsfolder, and then add the path to that library in the Python engine. However, that's a potential security problem (see #21).Unfortunately, this library depends on IronPython which does not yet have support for Python 3.x. Only Python 2.x is supported at the moment. You can find the status of IronPython3 development here.