LoginSignup
1
0

More than 1 year has passed since last update.

PySide2(Qt for Python)はPython3.10では動かない

Posted at

困った内容

PySide2を使いたいけどPython3.10環境で

pip install PySide2 

ってインストールしようとしても以下のエラーが出てしまう人へ

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

解決法

これを見ると今の所Python3.5からPython3.9まででしか動かないとわかります。

Python3.9.7をインストールする

ここにアクセスしてから下までスクロールして、インストーラー等をダウンロードします。
必要ならPATHとかも設定してもらって

動くようになる

以下を実行します。

pip install PySide2

多分無事にインストールできるはずです。

参考文献

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