Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 747 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 747 Bytes

TwitterAnalysisTools

This repository is intended to include handy tools to make the whole pipeline of doing Twitter data analysis more convenient and efficient.

Python Evniroment

Create the Virtual Environment (Venv)

[white@localhost TwitterAnalysisTools]$ python3 -m venv venv

Activate the Virtual Environment

[white@localhost TwitterAnalysisTools]$ source venv/bin/activate

Check installed packages in the Virtual Environment

(venv) [white@localhost TwitterAnalysisTools]$ pip freeze

Deactivate the virtual Environment

(venv) [white@localhost TwitterAnalysisTools]$ deactivate

Install packages in requirements.txt file

pip install -r requirements.txt