Bug severity is an important factor in prioritizing which bugs to fix first. The process of triaging bug reports and assigning a severity requires developer expertise and knowledge of the underlying software. The Automatic Bug Traige (AutoBugTriage) tool allows for the prediction of bug severity at the beginning of the project by using an organization’s historical data, in the form of bug reports from past projects, to train the prediction classifier.
We recommend running our application in a python virtual environment to ensure the packages required do not conflict with your exisitng python distribution.
Install virtualenv
$ sudo apt install virtualenvCreate virtual environment in home directory
$ python3 -m venv thesis-envActivate virtual environment
$ source ~/thesis-env/bin/activateInstall required packages
pip install -r requirements.txtWhen done you can use deactivate
$ deactivatePlease see the following reference site for more information on python virtual environments.