Pip error: Microsoft Visual C++ 14.0 is required

后端 未结 8 1917
离开以前
离开以前 2020-11-22 09:58

I just ran the following command:

pip install -U steem

and the installation worked well until it failed to install pycrypto. Aft

8条回答
  •  一整个雨季
    2020-11-22 10:40

    I got this error when I tried to install pymssql even though Visual C++ 2015 (14.0) is installed in my system.

    I resolved this error by downloading the .whl file of pymssql from https://www.lfd.uci.edu/~gohlke/pythonlibs/

    Once downloaded, it can be installed by the following command :

    pip install python_package.whl
    

    Hope this helps

提交回复
热议问题