Armadilloフォーラム

pyserial インストールできない

kdhiro

2021年2月9日 16時53分

Armadillo-640にpyserialをインストールしたいのですが、下記のようなエラーが出ます。
対処法を教えて頂きたく。

root@armadillo:/home/atmark# python3 -m pip install pyserial
Collecting pyserial
Could not find a version that satisfies the requirement pyserial (from versions: )
No matching distribution found for pyserial

コメント

at_akihito.irie

2021年2月10日 10時49分

入江です。

pipでインストールできない原因を探るためには

[armadillo]# python3 -m pip install pyserial -vvv

を実行することで出力が増えて何かわかるかもしれません。

単純にpyserialをインストールしたいだけでしたら、

[armadillo]# apt install python3-serial

でもインストールすることが可能です。

kdhiro

2021年2月12日 9時13分

ありがとうございます。下記コマンドでインストールできました!

apt install python3-serial