error: Microsoft Visual C++ 14.0 is required

爷,独闯天下 提交于 2020-02-08 11:15:08

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!