Open source maker course for SJTU in 2019 fall
参考
pip install pyserial
安装步骤:
在你的电脑的c:\user(或者用户)\你电脑的用户名\,这个目录下创建个命名为“pip”的文件夹(如:C:\Users\gmn\pip),在该文件夹下创建一个命名为“pip.ini”的文件,在该文件中写入以下内容:
[global]
index-url=https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=https://mirrors.aliyun.com/pypi/simple/
disable-pip-version-check = true
timeout = 6000
打开cmd 或 powershell
pip install opencv-python
git config --global user.name “Your Name”
git config --global user.email youremail@whatever.com
git config -- list
git config -- global credential.helper 'cache --timeout 3600'
import cv2
img=cv2.imread("aa.jpg" )
cv2.imshow("wwww",img)
cv2.waitKey(0)
cv2.destroyAllWindows()