Pip error: Microsoft Visual C++ 14.0 is required

后端 未结 8 1814
离开以前
离开以前 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:25

    Pycrypto has vulnerabilities assigned the CVE-2013-7459 number, and the repo hasn't accept PRs since June 23, 2014.

    Pycryptodome is a drop-in replacement for the PyCrypto library, which exposes almost the same API as the old PyCrypto, see Compatibility with PyCrypto.

    If you haven't install pycrypto yet, you can use pip install pycryptodome to install pycryptodome in which you won't get Microsoft Visual C++ 14.0 issue.

提交回复
热议问题