Can't install python Polyglot package on Windows
Sadly the package is not yet stable when it comes to Windows. After trying pip and conda install without luck. This is what I did to get it to work on Python 3.6 environment running on Windows 10 64 bit.
I had Visual C++ 2015 Build Tools(includes Windows SDK) via VS 2015 Community version and Numpy already installed.
I downloaded the correct dependence packages(PyICU and pycld2) from Unofficial Windows Binaries for Python Extension Packages and:
pip install PyICU-1.9.8-cp36-cp36m-win_amd64.whl
pip install pycld2-0.31-cp36-cp36m-win_amd64.whl
So cp36 matches my Python env.version, win for Windows, and amd64 for 64bits. Download the correct wheel that matches your systems.
After that I cloned and install the package from GitHub
git clone https://github.com/aboSamoor/polyglot.git
cd polyglot
python setup.py install