matt-8319

Results 3 comments of matt-8319

I have been stuggling for the last two days to try and get a working environment up and running. Using the devtools quick-start to spin up an environment using Docker...

> @matt-8319 IIRC, the devtools is not maintained well. I think the native standalone mode would be easier to try. Thanks @style95. Do you know if it is possible to...

The following should get it working for you: ``` Installer.Source = new DownloadInstallationSource { DownloadUrl = "https://www.python.org/ftp/python/3.11.0/python-3.11.0-embed-amd64.zip" }; Runtime.PythonDLL = Path.Combine(Installer.EmbeddedPythonHome, "python311.dll"); Installer.SetupPython().Wait(); Installer.PipInstallModule("spacy", "3.8.0").Wait(); _pythonLock = Spacy.Initialize(Spacy.ModelSize.Small, Language.Any, Language.English).Result;...