0
0

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.

pyinstallerがインストールできない

Posted at

誰向けの記事?

 この記事は、

pyinstallerをインストールしたいが、 pip install pyinstallerで躓いた人

向けです。(あくまで解決方法の一つなので、原因に当てはまらない場合は、何の参考にもなりません)

原因

 原因はpythonのバージョンでした。私の場合、python3.9がインストールされています。しかし、以下のバージョンじゃないとpyinstallerはインストールできません。現時点2021/06/06では、pyinstaller 4.3が最新です。

・python 3.6 - python 3.8
(参考:https://pypi.org/project/pyinstaller/

解決法

 つまり、対応するバージョンのpythonを入れ、そのバージョンでpip install pyinstallerを実行すれば良いという事です。

python3.8.9をインストールする

 以下のサイトから、python3.8.9のインストーラをダウンロードし、インストールしましょう。なお、インストール時にパスを指定しておくと便利です。

・python3.8.9:https://www.python.org/downloads/release/python-389/

・python3.8.9のダウンロード(win64)
・インストール時にパスを追加する

pythonのバージョンを指定しながらインストールする

そして、以下のコマンドにより、python3.8.9からpyinstallerをインストールしましょう。これでインストールできるはずです。

install_pyinstaller_by_python3.8
py -3.8 -m pip install pyinstaller

おわりに

 pyinstallerのインストールに躓いたのもありますが、pythonのバージョンを変えて実行する当たりが、他にも活きるのかなぁと思って書きました。pythonってバージョンによるエラーとかがあるからちょっと面倒な側面もありますよね。
 あと関係ないですが、先日投稿したPythonのSeleniumを使って、起動済みのブラウザを操作する。が地味に伸びててびっくりしました。どっかのランキングに乗ったおかげかな。内定もらった次にうれしい出来事です('ω')
 それじゃ!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?