6 lines
222 B
Python
6 lines
222 B
Python
|
# 点击运行【安装第三方库.py】,即可安装本课用到的第三方库
|
|||
|
# 使用清华镜像源安装amzqr
|
|||
|
import pip
|
|||
|
pip.main(['install', 'qrcode', '--index-url', 'https://pypi.tuna.tsinghua.edu.cn/simple'])
|
|||
|
|