Skip to content Skip to sidebar Skip to footer

How To Install The Guess_language Package In Python

This question might be trivial but, honesty, I can't figure out as I am new to python. I run Python 2.7.3 and the aforementioned package can be found here I would really appreciate

Solution 1:

You need to run the setup.py install command as root:

sudo python setup.py install

Otherwise you won't have permission to copy the files to your /usr/local/lib/python3.2/dist-packages directory.

To install the package on Python 2, you'll need to install the 3to2 package first.

Solution 2:

These days you can just use pip - the python package manager to install it:

  1. You'll need to install pip - and then
  2. simply: pip install guess_language

Post a Comment for "How To Install The Guess_language Package In Python"