Open1
rye で toach を追加する方法
rye init したあとに pyproject.toml に以下を追加 (CPU版の場合)
[[tool.rye.sources]]
name = "torch"
url = "https://download.pytorch.org/whl/cpu"
type = "index"
そして
$ rye add "torch==2.0.1"
で追加。
$ rye sync
でインストール。
rye init したあとに pyproject.toml に以下を追加 (CPU版の場合)
[[tool.rye.sources]]
name = "torch"
url = "https://download.pytorch.org/whl/cpu"
type = "index"
そして
$ rye add "torch==2.0.1"
で追加。
$ rye sync
でインストール。