Where do I find the Python3 Plugin for Rhino8?
I only have a Plugin for IronPython and I would like to use Python39
Use _ScriptEditor
as the command to start the new editor. Then start a new file and choose Python 3.
@nathanletwory
Am I required to have the IronPthon plugin enabled?
When I have it enabled then I run into syntax issues and confusing between IronPython and Python3.
If I do not have it enabled I can run purely on Python3 but I can not use RunPythonScript command.
I think there should be Cpython or Python3 Plugin I can replace the IronPython with to run smoothly but I can not find an .rhp file.
The plug-in is already provided by Rhino. RhinoCodePlugin
is the plug-in providing the _ScriptEditor
command, and the Python 3 integration.
@eirannejad how are users supposed to run Python 3 scripts with RunPythonScript? I forgot.
RhinoCodePlugin Is Enabled and Loaded.
I can run scripts though the script editor the problem is that RunPythonScripts dose not work without IornPython and I am trying to work out how this is done with Python3.
I believe RhinoCodePlugin dose not have a function/command to run an aliases? or to run a script without opening the script manually.
You can use the new ScriptEditor
command to run your scripts without opening the editor. See this page:
The older RunPythonScript
can also run Python 3 scripts if they start with #! python3
or have .py3
file extension
Thank you, @eirannejad and @nathanletwory.
This is working well and much appreciated!