PythonでMicrosoft Excelアドインを作成できる「pyxll」のインストールについて解説しています。
「pyxll(https://www.pyxll.com/)」は、Pythonコードのフロントエンドとし、Microsoft Excel を使用できるものです。VBAは使用せず、Python だけを使用します。
■Python
今回のPythonのバージョンは、「3.9.9」を使用しています。(Windows11)(pythonランチャーでの確認)
■pyxllをインストールする
pyxllをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install pyxll
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.9.9にインストールを行うために、バージョンの切り替えを行います。
py -3.9 -m pip install pyxll
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting pyxll Downloading pyxll-5.6.5-cp39-none-any.whl (60 kB) |████████████████████████████████| 60 kB 764 kB/s Installing collected packages: pyxll WARNING: The script pyxll.exe is installed in 'C:\Users\user_\AppData\Roaming\Python\Python39\Scripts' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed pyxll-5.6.5 WARNING: You are using pip version 21.2.4; however, version 23.2.1 is available. You should consider upgrading via the 'C:\Program Files\Python39\python.exe -m pip install --upgrade pip' command.
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、pyxllが正常にインストールされたことになりますが、「WARNING」と表示されました。「WARNING」はエラーではなく警告で、インストールは行われているので、今回は一旦無視しています。
なお、今回はpyxllのバージョン5.6.5をインストールしました。
コメント