It is a web game in which certain questions are asked to the user and based on the answer, returns a guess which language user was thinking of.
Run the following command and check http://127.0.0.1:5000/
python app.py
-
Create project directory
-
Create virtual environment http://docs.python-guide.org/en/latest/dev/virtualenvs/ read the guidelines to set up virtual environment.
cd my_project_folder virtualenv venv virtualenv -p path-to-python3.5 name_of_env source venv/bin/activate
If virtualwrapper is installed then run the following:
mkvirtualenv -p path-to-python3.5 -a path-to-directory name_of_env workon venv
-
Install required packages
pip install requirements.txt