我尝试通过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;
}
我不太明白我在这里要做的事情。 关于如何完成安装的任何想法?