pythonpytestのインストール失敗の解決策pytestに一致するディストリビューションが見つかりませんでしたバージョンが見つかりませんでした

 pip install pytest

エラーメッセージ

ERROR: Could not find a version that satisfies the requirement pytest
ERROR: No matching distribution found for pytest

解決策はミラーインストールを使用することであり、すべてがうまくいくでしょう!

pip install pytest -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

おすすめ

転載: blog.csdn.net/weixin_45598506/article/details/114144611