1
1

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 1 year has passed since last update.

Micropythonデバイスにパッケージをインストール

Last updated at Posted at 2023-02-15

Macからパッケージをインストールする。

Mac上のPythonにパッケージをインストールする場合はpipを利用するが、usbデバイスのmicropythonにパッケージをインストールする場合、mipを利用する。

  1. Macのpipデータベースをアップデート
    python3 -m pip install --upgrade pip

  2. リモートのデバイスをコントロールするためにまずmpremoteをインストール
    python3 -m pip install mpremote

  3. リモートデバイスにパッケージをインストール
    mpremote connect デバイスファイル mip install パッケージ名
    デバイスファイルはmicropythonと接続に使用するデバイス
    mpremote connect /dev/cu.usbport mip install ssd1306

  4. 確認
    mpremote connect デバイスファイル ls /lib

Thonnyのコンソールでパッケージのインストール

esp32のようなネットワークインターフェースをもったデバイスはコンソールにアクセスできれば、パッケージをインストールできる。

  • micropythonデバイスにmpremoteでmipをインストール
    mpremote connect /dev/cu.xx mip install mip
  • Thonnyのコンソール上では、モジュールをインターネットに繋いだ上で
    import mip
    • micropython-libからインストールする場合
      mip.install("パッケージ名")
    • インターネット上のファイルは
      mip.install("URL")

パッケージ

micropython gitリポジトリの

  • /lib/micropython-lib/micropython
  • /lib/micropython-lib/python-ecosys
1
1
2

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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?