Numpy Install RuntimeError: Broken toolchain: cannot link a simple C program

前端 未结 4 568
既然无缘
既然无缘 2020-12-18 16:20

(macbook air)

I spent a while trying to install this. First off, I can\'t use Homebrew because I installed it but then the \'network connection\' dropped and now my

4条回答
  •  我在风中等你
    2020-12-18 17:18

    I had a similar issue with Python3 numpy install in Fedora 24

    Solution provided here by Ollegn that worked for me was:

    sudo dnf install python3-devel
    sudo dnf install make automake gcc gcc-c++ gcc-gfortran
    sudo dnf install redhat-rpm-config
    sudo dnf install subversion
    sudo pip3 install -U numpy
    

提交回复
热议问题