How do I install a Python package with a .whl file?

后端 未结 17 2292
刺人心
刺人心 2020-11-22 00:54

I\'m having trouble installing a Python package on my Windows machine, and would like to install it with Christoph Gohlke\'s Window binaries. (Which, to my experience, allev

17条回答
  •  执笔经年
    2020-11-22 01:02

    In-case if you unable to install specific package directly using PIP.

    You can download a specific .whl (wheel) package from - https://www.lfd.uci.edu/~gohlke/pythonlibs/

    CD (Change directory) to that downloaded package and install it manually by -
    pip install PACKAGENAME.whl
    ex:
    pip install ad3‑2.1‑cp27‑cp27m‑win32.whl

提交回复
热议问题