bootphon / phonemizer

Simple text to phones converter for multiple languages
https://bootphon.github.io/phonemizer/
GNU General Public License v3.0
1.2k stars 166 forks source link

Cannot build #11

Closed mjablonski94 closed 6 years ago

mjablonski94 commented 6 years ago
$ python setup.py build
Traceback (most recent call last):
File "setup.py", line 20, in <module>
from setuptools import setup, find_packages
ImportError: No module named setuptools

I use ubuntu with preinstalled python version Python 2.7.15rc1

mmmaat commented 6 years ago

Try sudo apt-get install python-setuptools. If this fails, have a pip install -U pip setuptools (eventually preceded by a sudo).

mjablonski94 commented 6 years ago

Thank you! It works. Also works after updating python to 3.6.5.

mmmaat commented 6 years ago

You're welcome ;)