Raspbian stretch に PyQt5 をインストールする3(pyenvインストール)
Qt5をPython3で使うための準備1。
対象環境
- Raspbierry pi 3 Model B+
- Raspbian stretch 2018-06-27
- Qt 5.7.1
2018-11-23時点。
前回まで
- http://ytyaru.hatenablog.com/entry/2019/11/13/000000
- http://ytyaru.hatenablog.com/entry/2019/11/14/000000
手順
pyenvをインストールする。
$ cd ~ $ curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
~/.bash_profile
ファイルを作成して以下記入。ファイルが既存なら末尾に以下を追記する。
export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)"
なお、上記をスクリプト化して~/.bashrc
から呼び出しても動作した。
ターミナルを再起動して実行すると以下。
$ pyenv pyenv 1.2.8 Usage: pyenv <command> [<args>] Some useful pyenv commands are: commands List all available pyenv commands local Set or show the local application-specific Python version global Set or show the global Python version shell Set or show the shell-specific Python version install Install a Python version using python-build uninstall Uninstall a specific Python version rehash Rehash pyenv shims (run this after installing executables) version Show the current Python version and its origin versions List all Python versions available to pyenv which Display the full path to an executable whence List all Python versions that contain the given executable See `pyenv help <command>' for information on a specific command. For full documentation, see: https://github.com/pyenv/pyenv#readme
所感
pyenv
もapt
でインストールしたい……。というかPython標準で環境構築ツール一式を作ってくれ。それをapt
でインストールできるようにしてくれたら楽になるのに。