0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Python 3.8.5でpyatsのインストールにエラーになる

Posted at

概要 インストールメモです。

Python 3.8.5でpip install pyats[full」を実行したら次のようなエラーになりました。

ERROR: Could not find a version that satisfies the requirement pyats[full] (from versions: none)
ERROR: No matching distribution found for pyats[full]

解決

問題はpipのバージョンが古いからでした。

手順:

  1. 既存のpipバージョンを確認
    pip --version
    pip 20.0.2であることを確認
  2. pipをアップグレード
    pip install -U pip
  3. pipのバージョンを再確認
    pip --version
    pip 21.1.1であることを確認
  4. pyatsをインストール
    pip install pyats[full]
    無事にインストール

以上

0
1
1

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?