-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error with running IronPython 3.4.1 on existing Windows .NET4.7.2 project #1802
Comments
运行环境:戴森球计划dspgame i meet the same wrong =============================================== using System; using UnityEngine; using BepInEx; using IronPython.Hosting; using System.IO; namespace IronPython3Mod
} ============================================== |
Prerequisites
I'm working to add the latest stable version of IronPython to a large existing project. This project runs .NET 4.7.2, built for Windows x64 and built on Windows 10 with Visual Studio 2022. IronPython was added via NuGet.
I've had this issue for quite a while and have done a significant amount of research, but there is not much information on this topic.
Description
When running IronPython the initialization of an engine with
Python.CreateEngine();
functions properly, but when I attempt to executeengine.Execute(code, scope);
with the correct relevant code string and scope object I get a PlatformNotSupportedException. I have had a great deal of trouble trying to find the cause of this issue. This is the specific error:Any help or recommendations on project details I need to verify would be greatly appreciated. Thanks!
The text was updated successfully, but these errors were encountered: