在Windows上通过pip在matplotlib中安装会导致错误

时间:2020-11-05 15:35:01

标签: python windows pip

我尝试通过pip安装各种库,除matplotlib之外,其他所有库均成功。 我正在使用Windows 10,已安装c ++ 14。

完整的错误输出:https://pastebin.com/Z3uhcZ0k

错误摘录:

unsigned int hash(const char *word)
{
    unsigned int hash = 5381;
    int c;

    while ((c = *word++))        // *str++ is going to the next address in memory, where the next char in the string is stored
    {
        if (isupper(c))
        {
            c = c + 32;
        }

        hash = ((hash << 5) + hash) + c; // hash * 33 + c   // hash << 5 = hash * 2^5
    }

    return hash % N;
}

我不太明白我在这里要做的事情。 关于如何完成安装的任何想法?

0 个答案:

没有答案