I tried to downgrade my python version from 3.0 to 2.7.13 by following this instruction
Finally, I ended up with Python 2.7.13 (default, Mar 6 2018, 01:35:39)
, I realized that this version could not compatible with my currently project, that some modules which was used to working are depreciated
ExtDeprecationWarning: Importing flask.ext.sqlalchemy is deprecated, use flask_sqlalchemy instead. from flask.ext.sqlalchemy import SQLAlchemy
The version that could be working is Python 2.7.13 (default, Nov 7 2017, 00:42:48)
as checking on other machine working on the same project.
I don't want to change some modules to compatible with python version, instead I want to downgrade my python version to the previous working one Python 2.7.13 (default, Nov 7 2017, 00:42:48)
.
Any clues how can I downgrade it to the working python version? I'm Ubuntu 17.10. Thanks.