进入Python 官网下载python环境,安装。
用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢。
其中,比较常用的国内镜像包括:
(1)阿里云 http://mirrors.aliyun.com/pypi/simple/
(2)豆瓣http://pypi.douban.com/simple/
(3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
(4)中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
(5)华中科技大学http://pypi.hustunique.com/
打开cmd输入,建议使用https服务的
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/
查看版本
pip -V
升级版本
python -m pip install --upgrade pip
若提示:‘pip’ 不是内部或外部命令,也不是可运行的程序
因为安装的时候没选择安装环境变量。
新增Path内容为Python的Scripts路径:
检查cmd输入pip -h
,注意:你需要重新打开cmd哦
(1)中文
快捷键:Ctrl+Shift+P 输入命令 Configure Display Language
(2)自动保存
快捷键Ctrl+Shift+X 输入python 安装插件。
在使用软件的时候,很多技巧都会提示你完成的,比如格式化代码等。
(1)新建一个文件夹,新建hello.py
print('hello world')
安装插件code runner,快捷键Ctrl+ Alt + N启动,Ctrl+ Alt + M关闭。
(2)连接手机调试
import os
import time
print('开始删除回复信息')
while True:
# 模拟长按
os.system("adb shell input swipe 565 671 565 671 500")
# 选择删除
os.system("adb shell input tap 568 1710")
# 等待刷新
time.sleep(0.5)
# 确认删除
os.system("adb shell input tap 853 1077")
# 确认按钮
os.system("adb shell input tap 502 1042")
print('删除成功!')