MACOS python软件包安装问题

时间:2019-03-20 03:22:05

标签: python python-3.x gcc package

我正在尝试为python安装“ supplychainpy”软件包,但出现gcc错误。 “错误:命令'gcc'失败,退出状态为1”

  • 是的,我已经安装了xcode devtools xcode-select --install
  • 是的,我确定存在gcc gcc --version
  • 是的,我的点子是最新的pip install --upgrade pip
  • 是的,我已经安装了gcc(带有brew install gcc)。
  • 是的,我安装了带有所有依赖项的anaconda软件包。

这无济于事。这是我得到的输出:

    running build_ext
      building 'supplychainpy.simulations.sim_summary' extension
      creating build/temp.macosx-10.7-x86_64-3.7
      creating build/temp.macosx-10.7-x86_64-3.7/supplychainpy
      creating build/temp.macosx-10.7-x86_64-3.7/supplychainpy/simulations
      gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/anaconda3/include -arch x86_64 -I/anaconda3/include -arch x86_64 -I/anaconda3/include/python3.7m -c supplychainpy/simulations/sim_summary.c -o build/temp.macosx-10.7-x86_64-3.7/supplychainpy/simulations/sim_summary.o
      supplychainpy/simulations/sim_summary.c:6785:34: warning: variable '__pyx_v_f' is uninitialized when used here [-Wuninitialized]
        __pyx_t_1 = PyFloat_FromDouble(__pyx_v_f); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 296, __pyx_L1_error)
                                       ^~~~~~~~~
      supplychainpy/simulations/sim_summary.c:6771:18: note: initialize the variable '__pyx_v_f' to silence this warning
        float __pyx_v_f;
                       ^
                        = 0.0
      supplychainpy/simulations/sim_summary.c:8290:65: error: too many arguments to function call, expected 3, have 4
          return (*((__Pyx_PyCFunctionFast)meth)) (self, args, nargs, NULL);
                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                     ^~~~
      /Library/Developer/CommandLineTools/usr/lib/clang/10.0.0/include/stddef.h:105:16: note: expanded from macro 'NULL'
      #  define NULL ((void*)0)
                     ^~~~~~~~~~
      1 warning and 1 error generated.
      error: command 'gcc' failed with exit status 1

     Failed building wheel for supplychainpy
  Running setup.py clean for supplychainpy
Failed to build supplychainpy
Installing collected packages: supplychainpy
  Running setup.py install for supplychainpy ... error
    Complete output from command /anaconda3/bin/python -u -c "import setuptools, tokenize;__file__='/private/var/folders/m2/c5429khn3pj5581m817y69qc0000gn/T/pip-install-nrjs0muv/supplychainpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /private/var/folders/m2/c5429khn3pj5581m817y69qc0000gn/T/pip-record-md9iewfc/install-record.txt --single-version-externally-managed --compile:

1 个答案:

答案 0 :(得分:0)

问题可能出在gcc编译器配置上。您可以下载编译后的.whl  https://pypi.org/project/supplychainpy/#files中的文件。请注意,*-macosx_10_6_x86_64.whl文件用于macosx。

相关问题