I was trying to install pickle and glob libraries using pip install pickle and pip install glob. However, I am getting error saying that - ERROR: Could not find a version that satisfies the requirement pickle (from versions: none) and
ERROR: No matching distribution found for pickle . Similarly, I got errors for glob library as well - ERROR: Could not find a version that satisfies the requirement glob (from versions: none) and ERROR: No matching distribution found for glob . Please tell what should I do.
Problem in installing libraries
Hey @abhaygarg2001, pickle and glob libraries are standard libraries that are already present in our python toolkit. The reason for the No matching distribution found for pickle
is because libraries for included packages are not available via pip because you already have them (I found this out yesterday when I tried to install an integrated package).
So you can directly import these libraries and use them without having to install them separately using pip.
I hope this clears your doubt !
Please mark the doubt as resolved in your doubts section !
Happy Learning !