AI-Agent-Mastery

(★ 25)

Hands On AI Agent Mastery: 30-Day Intensive Production Engineering Course

File Explorer

  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

pipenv

View Details ▼

Simple and unified Python development workflow.
Manage packages and the virtual environment for a project.

pipenv

Create a new project:

pipenv --three

Create a new project using Python 3:

pipenv install {{package}}

Install a package:

🔍

poetry

View Details ▼

Manage Python packages and dependencies.
Some subcommands such as `about`, `check`, `env`, etc. have their own usage documentation.
See also: `asdf`, `pipenv`, `hatch`.

poetry new {{project_name}}

Create a new Poetry project in the directory with a specific name:

poetry add {{dependency}}

Install and add a dependency and its sub-dependencies to the `pyproject.toml` file in the current directory:

poetry install

Install the project dependencies using the `pyproject.toml` file in the current directory:

// repository documentation