Как исправить ошибку установки pip в osqp для python3.4? - PullRequest
0 голосов
/ 11 января 2019

Ошибка выглядит следующим образом:

Installing collected packages: osqp
  Running setup.py install for osqp ... error
    ...
    ...
    ...
    copying module/codegen/sources/src/qdldl_interface.c -> build/lib.linux-x86_64-3.4/osqp/codegen/sources/src
    copying module/codegen/sources/src/scaling.c -> build/lib.linux-x86_64-3.4/osqp/codegen/sources/src
    copying module/codegen/sources/src/util.c -> build/lib.linux-x86_64-3.4/osqp/codegen/sources/src
    running build_ext
    CMake Error at CMakeLists.txt:2 (cmake_minimum_required):
      CMake 3.2 or higher is required.  You are running version 2.8.12.2


    -- Configuring incomplete, errors occurred!
    Error: could find generator in Cache
    error: [Errno 2] No such file or directory: 'osqp_sources/build/out/libosqp.a'

    ----------------------------------------
Command "/home/zhongzi/code/.virtualenvs/ml3.4/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-tzdyeutc/osqp/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-f76ehs0l/install-record.txt --single-version-externally-managed --compile --install-headers /home/zhongzi/code/.virtualenvs/ml3.4/include/site/python3.4/osqp" failed with error code 1 in /tmp/pip-install-tzdyeutc/osqp/

Система 14.04.1-Ubuntu. Любая помощь будет оценена!

1 Ответ

0 голосов
/ 14 января 2019

Добавление ответа здесь, чтобы вопрос мог быть решен. Обновите пакет "cmake", например, в Ubuntu:

sudo apt-get install cmake

На это указывает вывод ошибки: «Требуется CMake 3.2 или выше. Вы используете версию 2.8.12.2».

...