Then went to binder and created a binder launch site then got the following error. Also got the same error when I made a different classifier and launched it on Binder
Anybody knows whats happening? and how to solve it? Some other people have had the same problem and have created issues in the repo of fastai/bear_voila since the last few weeks.
I also had this error. This is why I switched to Heroku. There is a pretty good guide on the course page.
With heroku you can enable debug messages in the Procfile, to find out what the error in cell 2 is.
The guides there so far are there ones people have written. I wrote the heroku one having deployed all my stuff there. Someone else wrote the seeme.ai guide after figuring that out.
If you or anyone else wants to add other guides for other platforms you’ve deployed to you can follow the same kind of format (more or less) and submit a PR to the course repo.
Jeremy and Sylvain have enough to do already imo so if you see something you think needs doing and you care enough about it, don’t be shy.
Hi @ringoo , I deployed my app, thanks for the requirement.txt and runtime.txt files.
/app/.heroku/python/lib/python3.8/site-packages/fastcore/foundation.py:56: UserWarning: patch_property is deprecated and will be removed; use patch(as_prop=True) instead warnings.warn(“patch_property is deprecated and will be removed; use patch(as_prop=True) instead”)
You have to take care which Python version is required by your PyTorch requirements in requirements.txt.
If you use https://download.pytorch.org/whl/cpu/torch-1.6.0%2Bcpu-cp38-cp38-linux_x86_64.whl you need python-3.8 (see cp38 which stands for CPython 3.8).