I am relatively new to python and trying to install the base64 package through my cmd (that is system32/cmd.exe <- not sure if this is relevant).
I am using python 2.7.12 64 bit pip 9.0.1
My code is:
pip install base64
My error is:
Could not find a version that statisfies the requirement base64 (from versions : )
No matching distribution found for base64
I was successfully able to install the datetime package, but I received the above error when trying to install pprint. So it is not directly related to base64.
Will be happy to post any other needed information at request, please give me a general idea how I can track down the information needed to solve this problem.
base64
is built into the core python distribution (docs.python.org/2/library/base64.html).datetime
is the same. You shouldn't need to install it with pip. – Elasmobranch