- I would like to run the following project: https://github.com/pyl0ne/flaskSaaS 
- At the 2nd step of executing causes the error 
- python manage.py initdb(if I run it like this it has no problem, but he have run it with python3 with no problem as well: https://youtu.be/NzmoPqte4V4?t=1623 )
- I Do want to run it with python 3 so instead I use: - python3 manage.py initdb
- To run it in python3 I have corrected in the code manage file: 
- ORIGINAL (tried with this one before): - from flask.ext.script import Manager, prompt_bool, Shell, Server
- Mine: - from flask_script import Manager, prompt_bool, Shell, Serverbased on: importerror: no module named flask.ext.script
- I have tried to run it in PyCharm directly and checked the DE's interpreter all set to python 3.7 importerror: no module named flask.ext.script (It gives errors similar to the terminal) 
Final Error:
Beli:flaskSaaS-master peterSimon$ python3 manage.py runserver
Traceback (most recent call last):
  File "manage.py", line 1, in <module>
    from flask_script import Manager, prompt_bool, Shell, Server #ORIGINAL: from flask.ext.script import Manager, prompt_bool, Shell, Server
ModuleNotFoundError: No module named 'flask_script'
 
     
     
    