wechat作弊

作者: 知识学者 | 来源:发表于2018-04-14 18:14 被阅读99次

    菜鸟一个最多跳60多分,看到 微信小游戏跳一跳外挂教程(安卓版)的教程,自己尝试了一下,ubuntu17环境,python2,python3公存在,开始失败了,我执行了sudo apt-get remove python*导致电脑系统break了。
    重新开始,安装ubuntu18,遇到不少问题。

    ubuntu18的宽带连接问题,可以看看我的坑。

    安装程序所需要的所有包,包链接:https://pan.baidu.com/s/1sldtwZV 密码:rzd7

    发现ubuntu8没有,pip,first install pip3

    sudo apt-get update
    sudo apt-get install upgrade-system 
    sudo apt-get install python3-pip
    

    sudo apt-get install python-pip 这是python2的pip,我没有安装,自己需要可以安装

    查看版本

    pip3 -v
    

    dflx@dflx:~/下载/pip-10.0.0b2$ pip3 -V
    pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)

    一下我自己安装文章的操作

    dflx@dflx:~/下载$ cd wechat_jump_game-master/
    dflx@dflx:~/下载/wechat_jump_game-master$ ls
    1.png      requirements.txt     wechat_jump_iOS_py3.py
    LICENSE    screenshot_backups   wechat_jump.py
    README.md  wechat_jump_auto.py  wechat_jump_py3.py
    dflx@dflx:~/下载/wechat_jump_game-master$ sudo pip3 install -r requirements.txt 
    

    requirements.txt 文件的内容,其实sudo pip3 install -r requirements.txt 就是读取requirements.txt 文件,安装对应的包。

    backports.functools-lru-cache==1.4
    cycler==0.10.0
    matplotlib==2.1.1
    numpy==1.13.3
    olefile==0.44
    Pillow==4.3.0
    pyparsing==2.2.0
    python-dateutil==2.6.1
    pytz==2017.3
    six==1.11.0
    

    突然发现这些package不小啊,我根目录还剩不到2g的大小。

    图片.png

    我网速太慢了。20kb/s

    dflx@dflx:~/下载/wechat_jump_game-master$ adb device
    
    Command 'adb' not found, but can be installed with:
    
    sudo apt install adb
    
    dflx@dflx:~/下载/wechat_jump_game-master$ sudo apt install adb
    [sudo] dflx 的密码: 
    正在读取软件包列表... 完成
    
    
    dflx@dflx:~/下载/wechat_jump_game-master$ adb devices
    List of devices attached
    * daemon not running. starting it now on port 5037 *
    free(): invalid next size (fast)
    ADB server didn't ACK
    * failed to start daemon *
    error: cannot connect to daemon
    

    百度问题: Ubuntu Android adb调试无法识别设备 -- List of devices attached ???????????? no permissions

    dflx@dflx:~/下载/wechat_jump_game-master$ adb devices
    List of devices attached
    1a63d16e    unauthorized
    
    dflx@dflx:~/下载/wechat_jump_game-master$ adb shell screencap -p /sdcard/1.png
    dflx@dflx:~/下载/wechat_jump_game-master$ adb pull /sdcard/1.png .
    [100%] /sdcard/1.png
    dflx@dflx:~/下载/wechat_jump_game-master$ python3.6 wechat_jump_auto.py 
    [100%] /sdcard/1.png
    1523698383 0 0 0 0
    adb shell input swipe 320 410 320 410 200
    [100%] /sdcard/1.png
    1523698388 0 0 0 0
    
    
    图片.png

    失败了,才几分。。。。。


    图片.png

    相关文章

      网友评论

        本文标题:wechat作弊

        本文链接:https://www.haomeiwen.com/subject/kcvlkftx.html