Open imyutaro opened 1 year ago
pip --index-url ( pip install -i )でインストールするようなものは、pyproject.toml に以下のように記述する。
pip --index-url
pip install -i
pyproject.toml
... [[tool.rye.sources]] name = "torch" url = "https://download.pytorch.org/whl/torch/" type = "find-links" ...
or
... [[tool.rye.sources]] name = "torch" url = "https://download.pytorch.org/whl/cu118" type = "index" ...
[[tool.rye.sources]] の部分を [[sources]] にしてもできない。url先に記載されている内容によって、typeを変える必要がある。 https://rye-up.com/guide/pyproject/#toolryeexcluded-dependencies
[[tool.rye.sources]]
[[sources]]
上記のように記述してから、rye initしたプロジェクトルートに移動して、 rye add torch && rye sync する 。(rye add がプロジェクトルートでないとエラーがでた。プロジェクトルートでないとできない?)
rye add torch && rye sync
雑感
メモ
ryeメモ
pip --index-url
(pip install -i
)でインストールするようなものは、pyproject.toml
に以下のように記述する。or
[[tool.rye.sources]]
の部分を[[sources]]
にしてもできない。url先に記載されている内容によって、typeを変える必要がある。 https://rye-up.com/guide/pyproject/#toolryeexcluded-dependencies上記のように記述してから、rye initしたプロジェクトルートに移動して、
rye add torch && rye sync
する 。(rye add がプロジェクトルートでないとエラーがでた。プロジェクトルートでないとできない?)雑感