Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.13 KB

README.md

File metadata and controls

63 lines (41 loc) · 1.13 KB

tweets-clustering

A Simple clustering application created for FCIS-ASU Artificial Intelligence course in Spring of 2022

The Flow of the Application

is explained here Flow

Getting Started

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 You Commit

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