Author: Matthew Yeow
Supervision: Chong Chun Yong / Lim Mei Kuan
Description: This is a project to supplement the author's PhD thesis work. This project is currently hosted on Streamlit.
- Clone latest release
Alternatively:
git clone https://github.com/cyan-wings/Reuse-Tool.git
cd Reuse-Tool/
Install JDK 11 (Any JDK will do. This tutorial we will use OpenJDK.) and Python (Latest version).
sudo apt-get install openjdk-11-jdk
sudo apt-get install python3
Create virtual environment for the application.
python3 -m venv venv-reuse-tool
source venv-reuse-tool/bin/activate
Install Python package dependencies for application.
python3 -m pip install -r requirements.txt
python3 -m streamlit run About.py
Open Brave, Chrome or FireFox browser and input localhost:8501
- Ctrl-C to terminate the process on terminal.
- Deactivate environment.
deactivate
- Delete entire repository from folder.
- Uninstall JDK 11 and Python.