Skip to the content.

Setup

Setting up the Development Environment

Step 1: Install Visual Studio Code

I installed Visual Studio Code, my code editor for writing and testing code.

Step 2: Install Homebrew

Next, I installed Homebrew, a package manager that helps manage software installations.

Step 3: Verify Installations

I verified that Python, Ruby, and Jupyter were installed correctly by checking their versions in the terminal.

Step 4: Set up Virtual Environment

To isolate project dependencies, I created a Python virtual environment using the following commands:

python3 -m venv myenv
source myenv/bin/activate

Step 5: Clone Project Repository

I cloned the project repository from GitHub and set up the project locally using the command:

git clone https://github.com/yourusername/yourproject.git

Back to Home