error: Microsoft Visual C++ 14.0 is required

2019-09-20 00:17发布

问题:

I have to install wordcloud in jupyter but during process 'pip install wordcloud' i stuck on error 'error: Microsoft Visual C++ 14.0 is required. I have read related solution on stackoverflow but there is no any satisfied answer :(

回答1:

Try installing a precompiled version from here, select the wheel file for your python version, download it and then do

pip install <name of wheel file>


回答2:

Binary install

use the binary-only option for pip. For example, for wordcloud:

pip install --only-binary :all: wordcloud