WARNING: Ignoring invalid distribution -ip (c:\python39\lib\site-packages) How do I fix this and what does it mean?

PythonPython 3.xPipJupyter NotebookConda

Python Problem Overview


Error

I keep getting this error:

WARNING: Ignoring invalid distribution -ip (c:\python39\lib\site-packages)

How do I fix this and what does it mean?

I have anaconda and Python installed. I use Jupyter Notebook and Python in VS Code.

This is in Git Bash command line.

My operating system is Windows 10 Home.

I have Python 3.9.2 and pip 21.1.1.

Python Solutions


Solution 1 - Python

So apparently some folder/package named -ip + some numbers was installed at c:\python39\lib\site-packages.

Once I checked my site packages at the link it provided and removed the ip(random numbers) package it stopped giving me errors.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionralphiecodesView Question on Stackoverflow
Solution 1 - PythonralphiecodesView Answer on Stackoverflow