A Simple clustering application created for FCIS-ASU Artificial Intelligence course in Spring of 2022
is explained here Flow
Clone the project
git clone https://github.com/ahmedheltaher/tweets-clustering.git
Go to the project directory
cd tweets-clustering
Now You Have To setup the virtual env (You need Python to be installed)
pip install virtualenv
Initialize the virtual env (you can call tweets-clustering-env
what ever you want)
virtualenv tweets-clustering-env
Run the virtual env
source tweets-clustering-env/venv/bin/activate
Now Install the requirements for the project
pip -r requirements.txt
Before everting make sure you are in the virtual env so the requirements file will be formed from only the truly need libs
then update requirements file if updated using this command:
pip freeze > requirements.txt
Then commit as you do usually
git add.
git commit -m "Your Commit Message"
git push origin master