英文:
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'
>>>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论