树莓派 opencv 环境的搭建
树莓派默认为 python 2, 修改默认 python 为 python 3
sudo rm /usr/bin/python
sudo cp /usr/bin/python3 /usr/bin/python
pip换源
查看 pip 设置
pip config list
pip换国内源
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config set global.extra-index-url https://mirrors.aliyun.com/pypi/simple/
#