5 ビュー
pip3freeze-> requirements.txt
コマンドを使用してpython ##でモジュールを移行します機能紹介:移植を容易にするために、コンピューターにインストールされているpythonのモジュール名とバージョンをパックします。
cmdを開いて実行します。pip3freeze-> requirements.txt
はrequirements.txtファイルを生成します
cmdを開いて次のコマンドを実行します: pip3 install -r Requirements.txt
を実行して、requirements.txtファイル内のすべてのモジュールをインストールします
解決:
Doubanのダウンロードをお勧めします pip3 install -i https:// pypi.doubanio.com / simple /
pip3 install -i https://pypi.doubanio.com/simple/パッケージ名
例: pip3 install -i https://pypi.doubanio.com/simple/ -r required.txt
pip3 install -ihttps://pypi.doubanio.com/simple/モジュール名
たとえば、numpyモジュールをインストールします。
pip3 install -i https://pypi.doubanio.com/simple/ numpy
Recommended Posts