我为某些项目购买了RPI Zero。问题在于此版本的RPI没有WIFI,只有USB用于键盘。
是否可以通过SD卡安装pip3
/ guizero
/ ...之类的软件?
答案 0 :(得分:1)
在准备阶段,您可以在SD卡的根文件系统上将YYYYMM
和def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
question = op.create_table('question',
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('application_form_id', sa.Integer(), nullable=False),
sa.Column('section_id', sa.Integer(), nullable=False),
sa.Column('type', sa.String(length=25), nullable=False),
sa.Column('description', sa.String(), nullable=True),
sa.Column('order', sa.Integer(), nullable=False),
sa.Column('headline', sa.String(), nullable=False),
sa.Column('options', sa.JSON(), nullable=True),
sa.Column('is_required', sa.Boolean(), nullable=False),
sa.ForeignKeyConstraint(['application_form_id'], ['application_form.id'], ),
sa.ForeignKeyConstraint(['section_id'], ['section.id'], ),
sa.PrimaryKeyConstraint('id'),
)
seed_question_data(question)
def seed_question_data(question):
op.bulk_insert(question,
[
{
'id': 5,
'application_form_id': 1,
'section_id': 2,
'type': 'long_text',
'headline': 'headline 1',
'description': 'Maximum 80 words.',
'order': 4,
'is_required': True
},
{
'id': 6,
'application_form_id': 1,
'section_id': 2,
'type': 'long_text',
'headline': 'headline 2',
'description': 'Maximum 150 words.',
'order': 5,
'is_required': False
},
{
'id': 7,
'application_form_id': 1,
'section_id': 2,
'type': 'file',
'headline': 'headline 3',
'description': 'description 3',
'order': 6,
'is_required': True
},
{
'id': 8,
'application_form_id': 1,
'section_id': 2,
'type': 'multi-choice',
'headline': 'headline 4',
'description': 'description 4' ,
'order': 7,
'is_required': True,
'options': [
{'selection': 'Yes'},
{'selection': 'No'}
]
}
一起使用。
这是一个小脚本:
qemu static
您还可以查看以下内容:https://wiki.debian.org/RaspberryPi/qemu-user-static
答案 1 :(得分:0)
是的,但我不建议这样做。您可以下载.deb文件,将它们复制到sd卡中,然后使用
进行安装dpkg -i <package name>
但这有几个缺点。没有互联网连接,您将无法使用apt软件包管理器。您还需要安装所有依赖项,因此可以是10个软件包,甚至更多。而且您还需要手动更新...一场噩梦。
除此之外,您还需要USB集线器:
1)买便宜的wifi棒(大约$ 5) 2)如果您有手机,则可以启用USB网络共享。这将与RPi共享您的手机Internet连接。 如果您需要我的帮助进行配置,请发表评论。但这很容易。