问题
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
来源:https://stackoverflow.com/questions/49513255/error-microsoft-visual-c-14-0-is-required