Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 283 Bytes

File metadata and controls

14 lines (11 loc) · 283 Bytes

Claude Code Preferences

Running Python Scripts

Always use uv run instead of python to run Python scripts to ensure dependencies are properly managed.

Example:

uv run script.py

Other Commands

Use uv add to install dependencies:

uv add package_name