René's URL Explorer Experiment


Title: Loading runtime in blender on macOS 15.1 causes `MissingMethodException` · Issue #2503 · pythonnet/pythonnet · GitHub

Open Graph Title: Loading runtime in blender on macOS 15.1 causes `MissingMethodException` · Issue #2503 · pythonnet/pythonnet

X Title: Loading runtime in blender on macOS 15.1 causes `MissingMethodException` · Issue #2503 · pythonnet/pythonnet

Description: Environment Pythonnet version: 3.0.4 Python version: 3.11.7 Operating System: macOS 15.1 (24B83), ARM64 .NET Runtime: 8.0 Details I am using pythonnet for a blender extension, and for the most part, it works great! However, recently a us...

Open Graph Description: Environment Pythonnet version: 3.0.4 Python version: 3.11.7 Operating System: macOS 15.1 (24B83), ARM64 .NET Runtime: 8.0 Details I am using pythonnet for a blender extension, and for the most part...

X Description: Environment Pythonnet version: 3.0.4 Python version: 3.11.7 Operating System: macOS 15.1 (24B83), ARM64 .NET Runtime: 8.0 Details I am using pythonnet for a blender extension, and for the most part...

Opengraph URL: https://github.com/pythonnet/pythonnet/issues/2503

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Loading runtime in blender on macOS 15.1 causes `MissingMethodException`","articleBody":"### Environment\r\n\r\n-   Pythonnet version: 3.0.4\r\n-   Python version: 3.11.7\r\n-   Operating System: macOS 15.1 (24B83), ARM64\r\n-   .NET Runtime: 8.0\r\n\r\n---\r\n\r\n### Details\r\n\r\nI am using pythonnet for a blender extension, and for the most part, it works great!\r\n\r\nHowever, recently a user reported that it does not run on their macOS system, which throws following error upon trying to load `coreclr`:\r\n`System.MissingMethodException: Failed to load symbol Py_Main: dlsym(RTLD_DEFAULT, Py_Main): symbol not found`\r\n\r\nThe error does not occur when attempting to do so using the python executable shipped with blender directly. \r\nIt only happens when running from within blender itself.\r\n\r\n---\r\n\r\n### Minimal Reproduction\r\n\r\n1. Get a device with macOS 15.1 and ARM64 architecture\r\n2. download blender 4.2\r\n3. Create the files `script.py` and `runtimeconfig.json` in the same directory with the contents pasted below\r\n4. Run blender with the commandline argument `-P path/to/script.py`\r\n\r\n(note: the crash occurs without `runtimeconfig.json` as well, but i still included it for good measure)\r\n\r\n#### script.py\r\n```python\r\ndef run():\r\n    try:\r\n        import pythonnet\r\n    except ModuleNotFoundError:\r\n        import pip\r\n        pip.main([\"install\", \"pythonnet\"])\r\n\r\n        try:\r\n            import pythonnet\r\n        except ModuleNotFoundError:\r\n            print(\"Could not install python.net, please try running blender with admin rights or run a portable instance of blender in a directory with write access\")\r\n            return\r\n\r\n    import pathlib\r\n    runtime_config_path = pathlib.Path(__file__).parent / \"runtimeconfig.json\"\r\n    pythonnet.load(\"coreclr\", runtime_config=runtime_config_path)\r\n\r\n    from System import Console\r\n    Console.WriteLine(\"Pythonnet successfully loaded!\")\r\n\r\nrun()\r\n```\r\n\r\n#### runtimeconfig.json\r\n```json\r\n{\r\n  \"runtimeOptions\": {\r\n    \"tfm\": \"net8.0\",\r\n    \"framework\": {\r\n      \"name\": \"Microsoft.NETCore.App\",\r\n      \"version\": \"8.0.0\"\r\n    },\r\n    \"configProperties\": {\r\n      \"System.Reflection.Metadata.MetadataUpdater.IsSupported\": false,\r\n      \"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization\": false\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n---\r\n\r\n### Console output / Stacktrace\r\n\r\n```python\r\nFailed to initialize pythonnet: System.TypeInitializationException: The type initializer for 'Delegates' threw an exception.\r\n ---\u003e Python.Runtime.BadPythonDllException: Runtime.PythonDLL was not set or does not point to a supported Python runtime DLL. See https://github.com/pythonnet/pythonnet#embedding-python-in-net\r\n ---\u003e System.MissingMethodException: Failed to load symbol Py_Main: dlsym(RTLD_DEFAULT, Py_Main): symbol not found\r\n   at Python.Runtime.Platform.PosixLoader.GetFunction(IntPtr dllHandle, String name) in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Native/LibraryLoader.cs:line 85\r\n   at Python.Runtime.Runtime.Delegates.GetFunctionByName(String functionName, IntPtr libraryHandle) in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Runtime.Delegates.cs:line 296\r\n   --- End of inner exception stack trace ---\r\n   at Python.Runtime.Runtime.Delegates.GetFunctionByName(String functionName, IntPtr libraryHandle) in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Runtime.Delegates.cs:line 300\r\n   at Python.Runtime.Runtime.Delegates..cctor() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Runtime.Delegates.cs:line 38\r\n   --- End of inner exception stack trace ---\r\n   at Python.Runtime.Runtime.Delegates.get_PyGILState_Ensure() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Runtime.Delegates.cs:line 319\r\n   at Python.Runtime.Runtime.PyGILState_Ensure() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Runtime.cs:line 712\r\n   at Python.Runtime.PythonEngine.AcquireLock() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/PythonEngine.cs:line 479\r\n   at Python.Runtime.Py.GILState..ctor() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Py.cs:line 27\r\n   at Python.Runtime.Py.GIL() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Py.cs:line 13\r\n   at Python.Runtime.Loader.Initialize(IntPtr data, Int32 size) in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Loader.cs:line 26\r\n   at Python.Runtime.Runtime.Delegates.get_PyGILState_Ensure() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Runtime.Delegates.cs:line 319\r\n   at Python.Runtime.Runtime.PyGILState_Ensure() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Runtime.cs:line 712\r\n   at Python.Runtime.PythonEngine.AcquireLock() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/PythonEngine.cs:line 479\r\n   at Python.Runtime.Py.GILState..ctor() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Py.cs:line 27\r\n   at Python.Runtime.Py.GIL() in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Py.cs:line 13\r\n   at Python.Runtime.Loader.Initialize(IntPtr data, Int32 size) in /home/benedikt/dev/pythonnet/dist/.tmpXppz4v/pythonnet-3.0.4/src/runtime/Loader.cs:line 26Traceback (most recent call last):\r\n  File \"/Users/user/Documents/Test/pythonnet_issue.py\", line 22, in \u003cmodule\u003e\r\n    run()\r\n  File \"/Users/user/Documents/Test/pythonnet_issue.py\", line 17, in run\r\n    pythonnet.load(\"coreclr\", runtime_config=config)\r\n  File \"/Users/user/Library/Application Support/Blender/4.2/extensions/.local/lib/python3.11/site-packages/pythonnet/__init__.py\", line 146, in load\r\n    raise RuntimeError(\"Failed to initialize Python.Runtime.dll\")\r\nRuntimeError: Failed to initialize Python.Runtime.dll\r\n```\r\n\r\nNote: \r\nHere, pythonnet is located in blenders extension folder, which ships pythonnet 3.0.4 via wheels. \r\nRemoving it does unfortunately not change the result.","author":{"url":"https://github.com/Justin113D","@type":"Person","name":"Justin113D"},"datePublished":"2024-11-07T22:45:14.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/2503/pythonnet/issues/2503"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:0cb350d7-cf6b-8788-a5b1-ff7c46fc5299
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idAF72:2AE294:1F9A438:2A93F6D:69702D8E
html-safe-noncec9eb83a381496158cd9141cb86b5a2bf13efca5a70ef7da5b71f495ca2620af1
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBRjcyOjJBRTI5NDoxRjlBNDM4OjJBOTNGNkQ6Njk3MDJEOEUiLCJ2aXNpdG9yX2lkIjoiMjM1MTMxNjAyNzUwOTQyNjA2IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac00425b284bd9953b85c2aadc670401aac0babf256436d3a4bcf39b88934cc4b3
hovercard-subject-tagissue:2642379556
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/pythonnet/pythonnet/2503/issue_layout
twitter:imagehttps://opengraph.githubassets.com/a02772ff35ed22a2aae206bb8bcb9f3c82359a0d176ebd71641ae129aef31aea/pythonnet/pythonnet/issues/2503
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/a02772ff35ed22a2aae206bb8bcb9f3c82359a0d176ebd71641ae129aef31aea/pythonnet/pythonnet/issues/2503
og:image:altEnvironment Pythonnet version: 3.0.4 Python version: 3.11.7 Operating System: macOS 15.1 (24B83), ARM64 .NET Runtime: 8.0 Details I am using pythonnet for a blender extension, and for the most part...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameJustin113D
hostnamegithub.com
expected-hostnamegithub.com
None01fa379f5de85ef8e791d09724e69709ce9eb9595278316e0a921312dc88e0bc
turbo-cache-controlno-preview
go-importgithub.com/pythonnet/pythonnet git https://github.com/pythonnet/pythonnet.git
octolytics-dimension-user_id6050430
octolytics-dimension-user_loginpythonnet
octolytics-dimension-repository_id14748123
octolytics-dimension-repository_nwopythonnet/pythonnet
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id14748123
octolytics-dimension-repository_network_root_nwopythonnet/pythonnet
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasedda91974c069382b0dfa47b2da7e28bd061c8331
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/pythonnet/pythonnet/issues/2503#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpythonnet%2Fpythonnet%2Fissues%2F2503
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpythonnet%2Fpythonnet%2Fissues%2F2503
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=pythonnet%2Fpythonnet
Reloadhttps://github.com/pythonnet/pythonnet/issues/2503
Reloadhttps://github.com/pythonnet/pythonnet/issues/2503
Reloadhttps://github.com/pythonnet/pythonnet/issues/2503
pythonnet https://github.com/pythonnet
pythonnethttps://github.com/pythonnet/pythonnet
Notifications https://github.com/login?return_to=%2Fpythonnet%2Fpythonnet
Fork 770 https://github.com/login?return_to=%2Fpythonnet%2Fpythonnet
Star 5.4k https://github.com/login?return_to=%2Fpythonnet%2Fpythonnet
Code https://github.com/pythonnet/pythonnet
Issues 155 https://github.com/pythonnet/pythonnet/issues
Pull requests 18 https://github.com/pythonnet/pythonnet/pulls
Discussions https://github.com/pythonnet/pythonnet/discussions
Actions https://github.com/pythonnet/pythonnet/actions
Projects 0 https://github.com/pythonnet/pythonnet/projects
Wiki https://github.com/pythonnet/pythonnet/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/pythonnet/pythonnet/security
Please reload this pagehttps://github.com/pythonnet/pythonnet/issues/2503
Insights https://github.com/pythonnet/pythonnet/pulse
Code https://github.com/pythonnet/pythonnet
Issues https://github.com/pythonnet/pythonnet/issues
Pull requests https://github.com/pythonnet/pythonnet/pulls
Discussions https://github.com/pythonnet/pythonnet/discussions
Actions https://github.com/pythonnet/pythonnet/actions
Projects https://github.com/pythonnet/pythonnet/projects
Wiki https://github.com/pythonnet/pythonnet/wiki
Security https://github.com/pythonnet/pythonnet/security
Insights https://github.com/pythonnet/pythonnet/pulse
New issuehttps://github.com/login?return_to=https://github.com/pythonnet/pythonnet/issues/2503
New issuehttps://github.com/login?return_to=https://github.com/pythonnet/pythonnet/issues/2503
Loading runtime in blender on macOS 15.1 causes MissingMethodExceptionhttps://github.com/pythonnet/pythonnet/issues/2503#top
https://github.com/Justin113D
https://github.com/Justin113D
Justin113Dhttps://github.com/Justin113D
on Nov 7, 2024https://github.com/pythonnet/pythonnet/issues/2503#issue-2642379556
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.