10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db765ca commit 4afa4bdCopy full SHA for 4afa4bd
README.rst
@@ -45,8 +45,10 @@ module:
45
Embedding Python in .NET
46
------------------------
47
48
-- You must set `Runtime.PythonDLL` or `PYTHONNET_PYDLL` environment variable
+- You must set `Runtime.PythonDLL` property or `PYTHONNET_PYDLL` environment variable
49
starting with version 3.0, otherwise you will receive `TypeInitializationException`.
50
+ Typical values are `python38.dll` (Windows), `libpython3.8.dylib` (Mac),
51
+ `libpython3.8.so` (most other *nix).
52
- All calls to python should be inside a
53
``using (Py.GIL()) {/* Your code here */}`` block.
54
- Import python modules using ``dynamic mod = Py.Import("mod")``, then
0 commit comments