
Day 1 of My 90 Days AI Journey: Setting Up the Perfect Environment
π Day 1 of My 90 Days AI Journey: Setting Up the Environment Hey developers π Today marks Day 1 of my 90 Days AI Learning Challenge , and the goal was simple: π Set up a complete development environment for AI & Python If you're a beginner, this is the most important step. A strong setup makes everything easier going forward. π οΈ Tools I Installed Hereβs what I used: Git β Version control VS Code β Code editor uv β Fast Python package manager Ollama β Run AI models locally β‘ Installation (Using winget) I used Windows Package Manager to install everything quickly: winget install --id Git.Git -e --source winget winget install --id Microsoft.VisualStudioCode -e --source winget winget install --id astral-sh.uv -e --source winget winget install --id Ollama.Ollama -e --source winget π Creating My Project Workspace I created a dedicated folder for this journey: mkdir C: \A I_90Days cd C: \A I_90Days βοΈ Initializing the Project To start a clean Python project: uv init This generated the base co
Continue reading on Dev.to Python
Opens in a new tab




