Python based data analysis tool for Smart Steel Technologies
First check for installed Python in your local machine. To check that, execute this command:
pip -V
If it says that pip is unknown command then execute the following commands to install pip
sudo easy_install pip
pip -V
Now it should print pip version.
Now these are the actual installation steps
sudo pip install virtualenv
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
python3 -m main
Hot reloading is not available. Therefore it needs to execute the following command every-time after making changes in the code.
python3 -m main