requirements.txtを作成したいが、Windows + PyCharm環境でpip freezeしようとすると権限の関係で実行できなかったときに対処した方法
コマンドがダメならモジュールを呼べば良い。
a.py
import pip
pip.main(['freeze'])
> python3 a.py > requirements.txt
Go to list of users who liked
More than 1 year has passed since last update.
requirements.txtを作成したいが、Windows + PyCharm環境でpip freezeしようとすると権限の関係で実行できなかったときに対処した方法
コマンドがダメならモジュールを呼べば良い。
import pip
pip.main(['freeze'])
> python3 a.py > requirements.txt
Register as a new user and use Qiita more conveniently
Go to list of users who liked