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 5 years have passed since last update.

Tinker BoardへPython3.7をインストール

Last updated at Posted at 2019-04-30

やり方はraspberry piにインストールする方法とおんなじです。
python.orgからソースを取得します。
$ wget https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tgz

ソースファイルを展開します。
$ tar xvf Python-3.7.3.tgz

Python-3.7.3ディレクトリが作成されているので移動します。
$ cd ./Python-3.7.3

README.rstを確認するとBuild Instructionsに書いてあったのでその通りに。
$ ./configure
$ make
$ make test
$ sudo make install

make installでこんなエラーが出ました。

File "/home/******/Python-3.7.3/Lib/ctypes/__init__.py", line 7, in <module>
    from _ctypes import Union, Structure, Array
ModuleNotFoundError: No module named '_ctypes'
Makefile:1130: ターゲット 'install' のレシピで失敗しました
make: *** [install] エラー 1

apt-getでもpipでもなんでもインストールしてしまえば良いのだろうけれどモジュール名が分からないのでgoogleで検索。
libffi-devのインストールで解決するとありました。

libffi-devをインストール
sudo apt install libffi-dev

もう一度sudo make installでインストールし直しました。

バージョンの確認をします。

$ python3 --version
Python 3.7.3
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?