Anaconda错误: 使用pip更新/安装库时出现无效的分发-atplotlib

huangapple go评论82阅读模式
英文:

Anaconda Error: Invalid Distribution -atplotlib When Updating/Installing Library with Pip

问题

我在尝试更新或安装库时遇到了这个错误。我使用Anaconda。我向ChatGPT寻求解决方案。他没有给我正确的答案。

警告:忽略无效的分发 -atplotlib(c:\users\hp\anaconda3\lib\site-packages)

英文:

I get this error when I try to update or install a library. I use Anaconda. I asked the chatGPT for a solution. He did not give me the right answer

WARNING: Ignoring invalid distribution -atplotlib (c:\users\hp\anaconda3\lib\site-packages)

答案1

得分: 1

c:\users\hp\anaconda3\lib\site-packages目录中查找名为-atplotlib的文件,将其重命名为matplotlib...

这是存储或内存中的一个位翻转的指示,将一个m变成了-

>>> bin(ord('m'))
'0b1101101'
>>> bin(ord('-'))
'0b0101101'
>>>
英文:

Look in c:\users\hp\anaconda3\lib\site-packages to find a file called -atplotlib-something-something and rename it to matplotlib...

This is an indication of a single bit having flipped in storage or in memory, turning an m to a -.

>>> bin(ord('m'))
'0b1101101'
>>> bin(ord('-'))
'0b0101101'
>>>

huangapple
  • 本文由 发表于 2023年5月28日 03:54:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/76348782.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定