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 virtualenv
Create virtual environment in home directory
$ python3 -m venv thesis-env
Activate virtual environment
$ source ~/thesis-env/bin/activate
Install required packages
pip install -r requirements.txt
When done you can use deactivate
$ deactivate
Please see the following reference site for more information on python virtual environments.