pip install ecos error “ Microsoft Visual C++ 14.0 is required.”

浪子不回头ぞ 提交于 2019-12-24 06:27:48

问题


I am trying to install the fancyimpute in my anaconda using pip install. but the error shows fail to install the ecos due to " Microsoft Visual C++ 14.0 is required." the link provided is expired. Does anyone know how to fix this? Thank you!

(py36) C:\Users\chenl>pip install ecos
Collecting ecos
  Using cached https://files.pythonhosted.org/packages/b6/b4/988b15513b13e8ea2eac65e97d84221ac515a735a93f046e2a2a3d7863fc/ecos-2.0.5.tar.gz
Requirement already satisfied: numpy>=1.6 in c:\users\chenl\anaconda3\envs\py36\lib\site-packages (from ecos) (1.14.3)
Requirement already satisfied: scipy>=0.9 in c:\users\chenl\anaconda3\envs\py36\lib\site-packages (from ecos) (1.1.0)
Building wheels for collected packages: ecos
  Running setup.py bdist_wheel for ecos ... error
  Complete output from command c:\users\chenl\anaconda3\envs\py36\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\chenl\\AppData\\Local\\Temp\\pip-install-omudd71s\\ecos\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d C:\Users\chenl\AppData\Local\Temp\pip-wheel-7kzas5zm --python-tag cp36:
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build\lib.win-amd64-3.6
  copying src\ecos.py -> build\lib.win-amd64-3.6
  running build_ext
  building '_ecos' extension
  error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools

  ----------------------------------------
  Failed building wheel for ecos

回答1:


Download from this page: https://www.lfd.uci.edu/~gohlke/pythonlibs/#ecos
Copy to folder near your venv, activate it and run:

pip install ecos‑*.whl


来源:https://stackoverflow.com/questions/51695071/pip-install-ecos-error-microsoft-visual-c-14-0-is-required

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!