Hello,
I am trying to launch a binder that installs the package randomhash
:
However, when I have this package in the requirements.txt
, it fails to install:
The version of the repo at time of posting is here:
Am I doing something wrong? Thank you!
Jérémie.
You need at least Python 3.8 to use randomhash. Your repo currently launches with Python 3.7.
Add a file called runtime.txt
with the following contents:
python-3.8
Or just use here as a template.
2 Likes
Thank you so very much @fomightez — that was exactly my issue!
1 Like