摘要: #!/usr/bin/python3 import pexpect new_pw = '12345678' try: process = pexpect.spawn('passwd',timeout=5) process.expect('[Nn]ew') process.sendline(new_p 阅读全文
posted @ 2021-04-27 19:37 bert_qin 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 系统中同时有python2和python3,pip安装的包python2能找到,python3却找不到,真是头疼。 后来发现pip可以指定包的安装路径,命令格式如下: pip install 包名 --target=路径名 例如: pip install pexpect --target=/usr/ 阅读全文
posted @ 2021-04-27 18:07 bert_qin 阅读(3330) 评论(0) 推荐(0) 编辑