Skip to content
/ mecab Public
forked from taku910/mecab

Yet another Japanese morphological analyzer

Notifications You must be signed in to change notification settings

s-fiebig/mecab

 
 

Repository files navigation

mecab

Yet another Japanese morphological analyzer

Python Bindings

Regarding broken Python bindings. Under Windows mecab-config is not available. Change setup.py accordingly.

setup(name = "mecab-python",
	version = "0.996",
	py_modules=["MeCab"],
	ext_modules = [
		Extension("_MeCab",
			["MeCab_wrap.cxx",],
			include_dirs=[r"C:\Program Files (x86)\MeCab\sdk"],
			library_dirs=[r"C:\Program Files (x86)\MeCab\sdk"],
			libraries=["libmecab"])
			])

Other error while building: error C2039: 'set_result' : is not a member of 'MeCab::Lattice'

class MECAB_DLL_CLASS_EXTERN Lattice {
public:
  virtual void set_result(const char *str) = 0;

For other problems: http://simudaru.hatenablog.com/entry/2014/05/11/010622

About

Yet another Japanese morphological analyzer

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 68.3%
  • HTML 20.5%
  • Shell 8.7%
  • C# 0.8%
  • CSS 0.5%
  • Perl 0.5%
  • Other 0.7%