Problem installing numpy for PyPy3 on Windows 10

前端 未结 2 743
难免孤独
难免孤独 2021-01-23 05:19

I am having issues trying to install numpy for pypy3 on my Windows 10 machine.

As I am unable to tell if this problem stems from my pypy3 installation or from something

2条回答
  •  甜味超标
    2021-01-23 05:49

    Seems to be ppy3 is not properly installed. Try installing through wget.

    wget https://bootstrap.pypa.io/get-pip.py
    ./pypy get-pip.py
    

    Once installed, try installing numpy

    pypy -m pip install numpy 
    

提交回复
热议问题