imyutaro / note

my note
0 stars 0 forks source link

Python関連 #9

Open imyutaro opened 1 year ago

imyutaro commented 1 year ago

ryeメモ

pip --index-urlpip 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

上記のように記述してから、rye initしたプロジェクトルートに移動して、 rye add torch && rye sync する 。(rye add がプロジェクトルートでないとエラーがでた。プロジェクトルートでないとできない?)

雑感

imyutaro commented 1 year ago

メモ