1
1

More than 1 year has passed since last update.

PIPで入れたモジュールの中身を出力して、pipでモジュールを一括でインストールする方法

Posted at

まずrequirements.txtをファイルに出力する。
$ pip freeze > requirements.txt

このrequirements.txtを別の環境にコピーして一括インストールする。
$ pip install -r requirements.txt

1
1
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
1