当前位置: 首页 > 工具软件 > gcc_termux > 使用案例 >

Android 5.0 Termux 配置米家设备环境[Alpine Linux]

海叶秋
2023-12-01

1. 前提

  1. 在配置米家设备环境之前我们先分析一下目前市面上能打通小米设备的API 或者开源软件。分别需要做哪些工作。

2. 实现

2.1 安装配置Termux

参考安装配置:https://blog.csdn.net/xiaokai1999/article/details/128862942

2.2 在Termux中安装ssh

参考安装配置:https://blog.csdn.net/xiaokai1999/article/details/128863003

2.3 在Termux中安装Alpine Linux

参考安装:https://blog.csdn.net/xiaokai1999/article/details/129143661

2.4 在Alpine Linux中配置环境

  1. 安装依赖
$ apk add python3 rust git clang py3-pip cargo
$ apk add libffi-dev libressl-dev python3-dev gcc 
  1. 配置系统参数

安装cryptography==35.0.0时会出现 error: failed to get asn1 as a dependency of package...错误
github issue:https://github.com/spack/spack/issues/29669
解决方案:https://community.home-assistant.io/t/error-failed-building-wheel-for-cryptography/352020/14

export CRYPTOGRAPHY_DONT_BUILD_RUST=1
export CARGO_NET_GIT_FETCH_WITH_CLI=true
  1. 安装 python-miio0.5.12 最新包支持的cryptography35.0.0

由于当前的Alpine版本支持Rust1.44.0,所以安装cryptography==35.0.0

$ pip3 install cryptography==35.0.0
  1. 安装 python-miio
$ pip3 install python-miio
  1. 测试 python-miio
$ miiocli --help

返回帮助信息的话,说明已经安装完成了。

 类似资料: