# Start a project Create project ``` ~$ uv init test-uv ~test-uv$ ls ├── .git ├── .gitignore ├── .python-version ├── README.md ├── main.py ├── pyproject.toml ``` Run example script ``` ~test-uv$ uv run main.py Using CPython 3.13.3 Creating virtual environment at: .venv Hello from test-uv! ``` ---