Installation¶
The following methods can be used to install DependAssist.
Using GitHub¶
Clone the Repository¶
git clone https://github.com/unstabl3/DependAssist.git
cd DependAssist
Create a Virtual Environment¶
It is recommended to use a virtual environment to manage dependencies.
python3 -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
Install the Required Libraries¶
Install the necessary dependencies using requirements.txt.
pip3 install -r requirements.txt
Notes¶
- Virtual Environment: Using a virtual environment ensures that the dependencies required by DependAssist do not interfere with other Python projects on your system.
- Dependencies: The
requirements.txtfile lists all the Python libraries needed for DependAssist to run properly.
By following these steps, you can easily install and set up DependAssist on your local machine.