Windows 10, Python 3.6, Kivy 1.9.1
Some of the answers on this site have been really helpful. It looks like what I need to do is to install glew, but oddly it seems harder than it looks. Here's my output on the command line when trying to install kivy with the command
python -m pip install kivy
I'm going through the installation instructions in https://kivy.org/docs/installation/installation-windows.html#installation-windows
Here is the end of the output from the command line:
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.10.25017\bin\HostX86\x64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -IC:\ProgramData\Anaconda3\include -IC:\ProgramData\Anaconda3\include "-IC:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.10.25017\ATLMFC\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.10.25017\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6.1\include\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.14393.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.14393.0\shared" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.14393.0\um" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.14393.0\winrt" /TcC:\Users\Andrew\AppData\Local\Temp\pip-build-8icy8c14\kivy\kivy\graphics\context.c /Fobuild\temp.win-amd64-3.6\Release\Users\Andrew\AppData\Local\Temp\pip-build-8icy8c14\kivy\kivy\graphics\context.obj context.c c:\users\andrew\appdata\local\temp\pip-build-8icy8c14\kivy\kivy\graphics\gl_redirect.h(8): fatal error C1083: Cannot open include file: 'GL/glew.h': No such file or directory error: command 'C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.10.25017\bin\HostX86\x64\cl.exe' failed with exit status 2
Command "C:\ProgramData\Anaconda3\python.exe -u -c "import setuptools, tokenize;file='C:\Users\Andrew\AppData\Local\Temp\pip-build-8icy8c14\kivy\setup.py';f=getattr(tokenize, 'open', open)(file);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, file, 'exec'))" install --record C:\Users\Andrew\AppData\Local\Temp\pip-mpef3eip-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\Andrew\AppData\Local\Temp\pip-build-8icy8c14\kivy\
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools>
I've tried installing glew from here http://glew.sourceforge.net/index.html . I have unpacked it a few times and tried to paste the relevant files in the right place a few times, but it hasn't helped. I've also tried some suggestions I found here and on other sites, but they haven't helped either.
I also tried to do this, but I'm going to need it in plain English. I don't understand a lot of it.
Help is much appreciated! I've been trying to get kivy installed for like a full day and a half, and I'm looking forward to getting it running.