简体   繁体   中英

Does NltkNet the NLTK wrapper class support .NET core web applications or only console applications?

When I try to Initialize the NltkNet object in my dotnet core web application I receive an error saying an assembly is not found or has a different manifest definition than its assembly reference.

在此处输入图像描述

The code is fairly simple, it does nothing at all except initialize an NltkNet object when a button is clicked.

public IActionResult Upload()
{
    Nltk.Init(new List<string>()
    {
        @"C:\IronPython27\Lib",
        @"C:\IronPython27\Lib\site-packages",
    });


            return View();
        }

I was able to get the exact same code to work in my console application without issue.

Is this a configuration issue on my end or is ASP.NET core MVC web application support not available for NltkNet?

I have discovered that NltkNet does not support dotnet core.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM