netcorepython_使⽤python从core调⽤python脚本
我正在尝试让pythonnet在我运⾏在Linux上的.Net核⼼应⽤程序中⼯作。在
我提到了Python.Runtime.dll在我的.Net核⼼项⽬中。在
我的代码是:using System;
using Python.Runtime;
namespace pythonnet_w
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Start");
using (**Py.GIL()**) {
// blabla
}
Console.WriteLine("End");
}
}
writeline使用方法python}
我得到这个运⾏时错误:
^{pr2}$
试图在这些线索中到解决⽅案,但没有任何运⽓:
更新:
我试图打开\pythonnet master\src\runtime**Python.Runtime.csproj**在visualstudio中查看是否可以将其编译为.Net或.Core,但我只能编译到framework。
我到了这篇⽂章“How to port from framework to standard”
这就是我要做的吗?在
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论