LLM
  • Overview
    • LLM
  • Key Concepts
    • Models
    • Key Concepts
  • Quckstart
    • Jan.ai
    • 🦙Ollama & Chatbox
  • Playground
  • Workflows
    • n8n
    • Flowise
      • Basic Chatbot
      • Research Agent
      • Company Information Agent
      • PDF Parser
      • Knowledge Base
      • Lead Gen
    • Agno
  • LLM Projects
    • RAG + ChainLit
  • Model Context Protocol
    • Claude + MCPs
    • Flowise + MCPs
  • Knowledge Graphs
    • neo4j
    • WhyHow.ai
  • Setup
    • WSL & Docker
    • 🦙Quickstart
    • Key Concepts
    • Workflows
    • Model Context Protocol
Powered by GitBook
On this page
  1. Setup

Key Concepts

Required packages for Concepts workshops ..

PreviousQuickstartNextWorkflows

Last updated 2 months ago

Ensure you have completed the WSL & Docker section and have access to an Ubuntu 24.04 LTS environment with Docker Installed.

x

Project
Packages
OS Requirements

Requires Window 10 or later

Requires macOS 11 Big Sur or later

For Linux - depends on Graphics card - its type (GTX, AMD, ARM64).

You will need to install CUDA or AMD ROCm drivers

is an extremely fast Python package installer and resolver, written in Rust, and designed as a drop-in replacement for pip and pip-tools workflows.

  1. Install .

cURL

curl -LsSf https://astral.sh/uv/install.sh | sh

Powershell

powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
  1. Add $HOME/.local/bin to your PATH.

source $HOME/.local/bin/env

Version control systems like Git are essential to modern software development best practices. Versioning allows you to keep track of your software at the source level. You can track changes, revert to previous stages, and branch to create alternate versions of files and directories.

  1. Check to see if Git is installed.

git --version
  1. If not install.

sudo apt install git
  1. Clone or fork Workshop--LLM git repository.

git clone https://github.com/jporeilly/Workshop--LLM.git

gh

GitHub CLI (gh) is specifically for working with GitHub. It allows you to use the command line to interact with GitHub.

  1. Download and install gh.

sudo apt update
sudo apt install gh
  1. Clone or fork Workshop--LLM git repository.

gh repo clone jporeilly/Workshop--LLM
  1. Start WSL Ubuntu 24.04.

  2. Run the following command to download and install Ollama.

curl -fsSL https://ollama.com/install.sh | sh


Pull Llama3.2:latest model

  1. Pull llama3.2:latest.

ollama pull llama3.2:latest

  1. Connect to the WSL Ubuntu 24.0.4

  1. Clone the following Workshop--LLM directory.

cd
git clone https://github.com/jporeilly/Workshop--LLM.git
  1. In Visual Studio Code, connect to WSL.

x

x

x

  1. and Open folder: Workshop--LLM/Key Concepts

Only download Ollama and pull llama3.2:latest model, if you haven't completed the .

Quickstart: Ollama & Chatbox
Key Concepts
UV
Ollama
uv
uv
Installing and managing Python | uv
Link to uv
Pull llama3.2:latest
Connect to WSL
Logo