error: Microsoft Visual C++ 14.0 is required

2019-09-19 23:57发布

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 :(

2条回答
相关推荐>>
2楼-- · 2019-09-20 00:13

Binary install

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

pip install --only-binary :all: wordcloud
查看更多
来,给爷笑一个
3楼-- · 2019-09-20 00:16

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>
查看更多
登录 后发表回答