ERROR: No matching distribution found for base64

Hello,
I try to deploy my app and i get following error:

ERROR: Could not find a version that satisfies the requirement base64 (from versions: none)
ERROR: No matching distribution found for base64

If i run it on my local machine, everything works as intended.
The app worked fine before, so the problem has to be “base64” in the requirements.txt

I also get the Warning:
“WARNING: You are using pip version 21.1.1; however, version 21.2.2 is available.”
Even if my command console says, that im on 21.2.2.

Any ideas what the problem could be?

thank you for your help!

Hi @Tassilo, welcome to the Streamlit community!! :wave: :partying_face:

The base64 module is part of the Python Standard Library and does not have to be installed from PyPi.

To resolve this specific error, remove base64 from line 1 of your requirements.txt.

Happy Streamlit’ing! :balloon:
Snehan

Thank you Snehan,

Now everything works as intended.

Have a great day,
Tassilo

1 Like