Agentic AI Project Setup
Step 1: Check Python Installation
1. Open Command Prompt (CMD).
2. Type the following command and press Enter:
python --version
3. Ensure the version is Python 3.10 or 3.11.
If Python is not installed, download and install it from [Link]
Step 2: Check pip Installation
1. In CMD, type:
pip --version
2. If it shows a version number, pip is installed.
If pip is NOT installed:
Option A: Using ensurepip (Python 3.4+)
python -m ensurepip --upgrade
Check pip again:
pip --version
Option B: Using [Link]
1. Download [Link] from: [Link]
2. Open CMD in the folder where you downloaded [Link] .
3. Run:
python [Link]
4. Check pip installation:
pip --version
Once pip is installed, you are ready to install all required libraries.
Step 3: Install VS Code (If not already installed)
1. Download from [Link]
2. Install and open VS Code.
3. Install Python Extension in VS Code.
Step 4: Open VS Code Terminal
1. Open VS Code.
2. Go to Terminal → New Terminal.
3. Make sure the terminal is using the correct Python interpreter:
Press Ctrl + Shift + P → type Python: Select Interpreter → choose installed
Python.
Step 5: Install All Required Libraries
1. Copy the following single command:
pip install numpy pandas matplotlib seaborn scikit-learn tensorflow joblib
jupyter notebook ipykernel langchain langchain-community langchain-openai
openai transformers torch sentence-transformers chromadb faiss-cpu python-
dotenv requests tqdm
2. Paste it in CMD or VS Code Terminal and press Enter.
3. Wait for all packages to install (this may take a few minutes).
This command installs everything needed for Agentic AI projects, including data processing,
visualization, machine learning, LLMs, agentic frameworks, memory storage, and notebook
support.
Step 6: Verify Installation
1. Open CMD or VS Code Terminal.
2. Run the following Python commands one by one to check:
import numpy
import pandas
import matplotlib
import seaborn
import sklearn
import tensorflow
import joblib
import langchain
import openai
import torch
import transformers
import sentence_transformers
import chromadb
3. If no errors appear, installation is successful.
You are now ready to start your Agentic AI projects!