Reputation: 11
I created an app successfully from a Tutorial on Web2Py but when I uploaded the application to PythonAnywhere, I received this error:
Error ticket for "pluralsight" Ticket ID
75.159.30.26.2020-07-17.15-41-34.00821419-8e86-4d99-881d-c2cb400d0e22 <type 'exceptions.ValueError'> unsupported pickle protocol: 3 Version web2py™ Version 2.18.5-stable+timestamp.2019.04.08.04.22.03 Python Python 2.7.12: /usr/local/bin/uwsgi (prefix: /usr)
Upvotes: 0
Views: 93
Reputation: 5867
It sounds like you're running web2py on Python 3 locally and with Python 2 on PythonAnywhere. The best solution would be to upgrade it on PythonAnywhere:
Then you should be able to upload your app.
Upvotes: 0