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

后端 未结 17 1974
刺人心
刺人心 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:26

    Download the package (.whl).

    Put the file inside the script folder of python directory

    C:\Python36\Scripts
    

    Use the command prompt to install the package.

    C:\Python36\Scripts>pip install package_name.whl
    

提交回复
热议问题