-
Notifications
You must be signed in to change notification settings - Fork 747
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Can I set the CoreCLR version? #2464
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
Comments
The function this is failing in is https://github.com/pythonnet/clr-loader/blob/master/clr_loader/__init__.py#L89 Is this really the only output you are seeing? There should at least be an exception message after this... |
I have the similar issue on two Windows 11 machines (In my case it's .net8 solution but requested by pythonnet is .net9): App: C:\Python311\python.exe To install missing framework, download: |
Please do not use the load("coreclr") and try: rt = get_coreclr(runtime_config="runtimeconfig.json") In the runtimeconfig.json replace with your framework |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
I'm trying to use
pythonnet
with .NET 9 RC. When I triedpythonnet.load("coreclr")
, the following error message from .NET was shown.It seems that .NET cannot resolve 9.0.0 with 9.0.0-rc. For my usecase 8.0.8 is OK. Can I make pythonnet to use this version of .NET?
The text was updated successfully, but these errors were encountered: