python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
pyinstaller + pythonnet(clr): module not found after adding dll as reference
I'm trying to pack a some code from me into an exe with help of pyinstaller.
In the code I use some proprietary .net third party libraries which are included with the pythonnet/clr module.
If I run t...
dominikdh
Votes: 0
Answers: 0
Multithreading with python.net
I am calling python from C# using the following code:
if (!PythonEngine.IsInitialized)
{
PythonEngine.Initialize();
PythonEngine.BeginAllowThreads();
}
//var pythonScriptCommand = string.Forma...
qwerty
Votes: 0
Answers: 1
how can i Embed python module in .net?
I have made a Ai cursor controller by face land marks by using python open cv, So i need to use this module inside my web browser application that made from .net c# chromium framework. How can i do th...
Lahiru Tharaka
Votes: 0
Answers: 1
Pythonnet (clr) and C# lists and enums
I have myClass which contains a field myList which is a list of elements from myEnum. I would like to add to this list more elements but in python. However exec(f"myClass.myList.Add(myEnum.{e}))&...
Cugusek
Votes: 0
Answers: 1