Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 866 Bytes

README.md

File metadata and controls

32 lines (28 loc) · 866 Bytes

Flask server for Travelling Salseperson Problem using Genetic Algorithm

Instructions for running the server

a. Change the directory

 > cd server

b. Setting up the virtual environment

> pip install virtualenv    #Installing the virtual environment module
> virtualenv venv           #Create virtual environment venv

c. Activating Virtual Environment
On Windows (Tested on Windows 10)

> venv\Scripts\activate    #Activate Virtual Environment 

On macOS and Linux (Tested on Ubuntu 20.04)

> source venv/bin/activate   #Activate Virtual Environment

d. Installing requirements

> pip install -r requirements.txt    #Installing all the requirements for running the project

e. Once all the requirements are installed, it's time to run the Flask App

> python app.py    #Starts the Server