1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

uv

Last updated at Posted at 2025-09-30

新規のプロジェクト

uv init -p 3.11 my-project
cd my-project

既存のプロジェクト

cd my-project
uv init
uv run hello.py
uv add requests
uv add requests==2.32.3
uv tree
uv pip list
uv remove requests
uv sync
uv pip install requests

※「uv pip install」は、uvのメリット (速度など) を得ることができません。何らかの理由で、pipと同じ挙動でインストールしたい場合に使います。

uv add -r requirements.txt
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?