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 :(
Asked
Active
Viewed 6,255 times
1
-
1Have you tried installing Microsoft Visual C++ 14 like the error suggests? – FlyingTeller Mar 27 '18 at 12:53
-
no visual studio are more than 1 gb so i want to ignore – Akash Mar 27 '18 at 13:38
-
If you want to use pip install from that source, you will have to do what it says. However, I have had cases where I need to build something on a small VM, so I just build it on another system and copy in the binaries. – Kenny Ostrom Mar 27 '18 at 13:54
2 Answers
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>

FlyingTeller
- 17,638
- 3
- 38
- 53
-1
Binary install
use the binary-only option for pip. For example, for wordcloud:
pip install --only-binary :all: wordcloud

R. Shams
- 76
- 1
- 5