我的AltJit在使用Mac时无法在iOS 17 iPad中工作

0vvn1miw  于 10个月前  发布在  iOS
关注(0)|答案(1)|浏览(197)

我今天试图在iPad上启用JIT,遇到了一些问题。
我碰到了这个:
pymobiledevice 3未安装
所以我按照官方页面上的说明做了这个:

/Applications/Xcode.app/Contents/Developer/usr/bin/python3 -m pip install -U pymobiledevice3

字符串
但后来我又犯了一个错误:
无法连接到设备。进程“python3”返回意外的输出。错误:没有这样的命令“start-quic-tunnel
所以我按照指示做了:

python3 -m pip install pymobiledevice3==2.30.0 construct==2.10.69


之后,我又试了一次,又得到了这个错误:
pymobiledevice 3未安装
有人能帮我吗?

44u64gxh

44u64gxh1#

可能python二进制文件目录不在您的路径中。请尝试替换:

pymobiledevice3

字符串
有:

python3 -m pymobiledevice3

相关问题