Instalando o numpy com pip no windows 10 para python 3.7

Instalei o python 3.7 no meu laptop Windows 10 desde que foi oficialmente lançado a partir de hoje (28/06/2018). Então eu tentei instalar o pacote numpy usando pip

pip install numpy

A instalação continua, mas finalmente falha com o erro abaixo:

        source = func(extension, build_dir)
      File "numpy\core\setup.py", line 675, in get_mathlib_info
        raise RuntimeError("Broken toolchain: cannot link a simple C program")
    RuntimeError: Broken toolchain: cannot link a simple C program

    ----------------------------------------
Command ""c:\program files\python37\python.exe" -u -c "import setuptools, tokenize;__file__='C:\\Users\\pcheg\\AppData\\Local\\Temp\\pip-install-7wjkw5wn\\numpy\\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\pcheg\AppData\Local\Temp\pip-record-uhj8233f\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\pcheg\AppData\Local\Temp\pip-install-7wjkw5wn\numpy\

Alguma idéia de como superar esse erro de instalação? Obrigado.

questionAnswers(2)

yourAnswerToTheQuestion