Prakash P
Prakash P

Reputation: 4058

piCore compatibility with python 3 on raspberry-pi 3 B+ model

piCore version 9.3 is installed on a raspberry pi 3 B+ device.

The project requires python3 packages like adafruit temperature library, pip, flask for running a rest server, gpio, some other python3 package, etc...

Is Python3 and it's dependencies like above available in piCore??

Upvotes: 0

Views: 1711

Answers (1)

gatorback
gatorback

Reputation: 1537

I recommend checking to see if the 3B+ is supported by picore 9.3 (I do not think it is). My tests are performed on a rPI-Zero-W.

To start:

  • add a python3.6 extension to picore from the command line:

    tce-load -wi python3.6.tcz

  • create extensions for your python modules OR install pip3

When a change is made to the system it is NOT persistent (will not survive system reboot). The backup command must be issued to facilitate persistence:

filetool.sh -b

Upvotes: 0

Related Questions