50
13

More than 3 years have passed since last update.

poetryでrequirements.txtからパッケージをインストールしたい

Last updated at Posted at 2020-04-07

概要

既存プロジェクトでのパッケージ管理をrequirements.txtで行っていたが、そのパッケージをそのままpoetryでinstallする際のメモ
poetryではrequirements.txtから直接インストールはできない

解決方法

poetry環境ではない場合はまずinitしておく

poetry init

requirements.txtの中身をfor文で回し、一つずつpoetry addしていく

for package in $(cat requirements.txt); do   poetry add "${package}"; done

参考

50
13
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
50
13