2019年3月23日土曜日

python3系にwxpythonをインストール (エラーあり-の, 終わらないし)


python3系にwxpythonをインストール


自分は、ServersMan@VPSなので、GUI環境ではない。

バージョン確認
root@localhost:~# cat /etc/issue
Ubuntu 14.04.5 LTS \n \l

64bitです(32bitはi686と表示らしい)
root@localhost:~# arch
x86_64


なので色々と大変だった。
GUI関係がインストールされていないのである、
以下をインストールしたらエラーがなくなった。
GTK+
OpenGL
GStreamer
webkit


python3.6  -m pip install wxpython
で実行したが、なかなか終わらない?
(ループしているようだったが、調べるとかなり時間がかかるらしい「数時間から日レベル」)

途中でキャンセルした。


python3.6  -m pip install wxpython
Collecting wxpython
  Using cached https://files.pythonhosted.org/packages/17/74/7c3ced03c3c76b9f98e4a0edae1801755a7599ebf481c04d9f77dfff17e3/wxPython-4.0.4.tar.gz
Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from wxpython) (1.11.0)
Requirement already satisfied: Pillow in /usr/local/lib/python3.6/dist-packages (from wxpython) (5.4.1)
Building wheels for collected packages: wxpython
  Building wheel for wxpython (setup.py) ... /^canceled
Operation cancelled by user

そこで、ネット上のwheel を利用して再インストールしてみた。
https://extras.wxpython.org/wxPython4/extras/
から、linux->gtk3->ubuntu14.04
と自分の必要とするものを探して利用しますよ。


python3.6  -m pip install https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-14.04/wxPython-4.0.2-cp36-cp36m-linux_x86_64.whl
Collecting wxPython==4.0.2 from https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-14.04/wxPython-4.0.2-cp36-cp36m-linux_x86_64.whl
  Downloading https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-14.04/wxPython-4.0.2-cp36-cp36m-linux_x86_64.whl (142.9MB)
    100% |????????????????????????????????| 143.0MB 28kB/s
Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from wxPython==4.0.2) (1.11.0)
Collecting PyPubSub (from wxPython==4.0.2)
  Downloading https://files.pythonhosted.org/packages/1a/41/a0aceb552d8ec63bb1e8223d130f9dd0f736470036d75d708183b104a2cb/Pypubsub-4.0.3-py3-none-any.whl (61kB)
    100% |????????????????????????????????| 61kB 109kB/s
Installing collected packages: PyPubSub, wxPython
Successfully installed PyPubSub-4.0.3 wxPython-4.0.2



間違えた場合は、こんな感じ(like this)
cp35はヴァージョンpyhton3.5でした、自分はpython3.6なので、cp36
その他OSのバージョンなどを注意深く確認する必要がありますね!

wxPython-4.0.0a3.dev3059+4a5c5d9-cp35-cp35m-linux_x86_64.whl is not a supported wheel on this platform.


参考URL
Ubuntu 16.04 に wxPython (Python3用) をインストール
ubuntu16.04のpython3にwxpythonをインストールする

0 件のコメント:

コメントを投稿