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

MicroPython/CircuitPythonAdvent Calendar 2023

Day 7

ネットワークに繋いでない(繋げない)デバイスで mip を使う方法

Posted at

はじめに

本日も小ネタです。

MicroPython 1.20.0 より、パッケージインストールに upip に代えて mip が提供されるようになりました。

ESP32 を積んだボードなど、ネットワークに繋げられるものであればよいのですが、そうでないボードはホストPC側でダウンロードしてからデバイスに転送するなどしていました。

前記事で取り上げた mpremote コマンドを使うと、ホストPC側のネットワークを使ってデバイスにライブラリをインストールできます。

方法

やり方は単純で、mpremote mip を使います。

たとえば micropython-lib にある ssd1306 パッケージをインストールしたい場合は次のようにします。

$ mpremote mip install ssd1306
Install ssd1306
Installing ssd1306 (latest) from https://micropython.org/pi/v2 to /lib
Installing: /lib/ssd1306.mpy
Done
1
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
1
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?