Installing scipy under WINDOWS10 is cumbersome, using PIP install scipy directly under the command line cannot be installed, but can be installed with VS2017 's integrated environment.
(1) First select the Python related component in Visual Studio Installer and let Visual Studio install the Python environment yourself
(2) vs environment when the installation is complete, create a new Python project and see the Python environment in the current system in the Python environment view.
(3) as shown, select "Open in PowerShell" to open the PowerShell window and enter a command to test the Python environment. If the environment is not a problem, access http://www.lfd.uci.edu/~gohlke/pythonlibs/, download scipy, and install.
(4) Currently I install the environment is Python3.6 64bit, then select SCIPY-1.0.0RC1-CP36-CP36M-WIN_AMD64.WHL to download. After the download is complete, enter the command pip install C:\USERS\LZHUC\DOWNLOADS\SCIPY-1.0.0RC1-CP36-CP36M-WIN_AMD64.WHL in PowerShell to install.
As shown, the SCIPY installation is successful.
Visual Studio + Python3.6 install scipy Library