Install Prerequisites
Before running the script, ensure that your system meets the following requirements:
Python: Version 3.5.0 or higher.
Note: Instructions assume you are using Home Brew, package manager
Reference: https://brew.sh/
Environment Update:
-
brew upgrade
-
brew update
-
brew upgrade openssl
Install Python:
-
brew install python
Install Pip:
-
Download Pip:
-
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
-
- Check Version:
-
python3 -m pip version
python3 --version
-
- Install Requests:
-
/usr/bin/python3 -m pip install requests
-
- Install Pandas:
-
pip3 install pandas
-