-
-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Description
Hi, I'm trying to run the basic example where you install spacy library using pip.
This is the code I'm using:
namespace spacy_csharp;
using Python.Included;
using Python.Runtime;
internal class Program
{
static async Task Main(string[] args)
{
await Installer.SetupPython();
await Installer.TryInstallPip();
await Installer.PipInstallModule("spacy");
PythonEngine.Initialize();
dynamic spacy = Py.Import("spacy");
Console.WriteLine("Spacy version: " + spacy.__version__);
}
}
The project compiles well, but I'm getting this runtime error
Any pointers, am I missing something?
Metadata
Metadata
Assignees
Labels
No labels