Missing File When Installing Pylinkgrammar
http://pypi.python.org/pypi/pylinkgrammar I am encountering an error when attempting to install pylinkgrammar: Running setup.py egg_info for package pylinkgrammar Installing colle
Solution 1:
This worked for me:
sudo apt-get install liblink-grammar4-dev
Solution 2:
Besides installing the liblink-grammar4 package also install liblink-grammar4-dev package which is available in synaptic.
I had been grappling with the same for over an hour and it worked for me
Solution 3:
You first need to install the liblink-grammar4 library:
If you're on ubuntu system, you can run:
sudo apt-add-repository ppa:python-pylinkgrammar/getsome
sudo apt-get install liblink-grammar4
If you're on a different flavor of linux, just make sure liblink-grammar4
is installed.
Solution 4:
This might be helpful
sudo apt-get install liblink-grammar4-dev cmake swig
sudo pip install pylinkgrammar
Post a Comment for "Missing File When Installing Pylinkgrammar"