沉默服饰

文章
6
资源
0
加入时间
2年10月17天

Detectron2 安装(ubuntu 18.04.6 LTS)

本文参考https://detectron2.readthedocs.io/en/latest/tutorials/install.htmlconda create -n maskrcnn pip python==3.7执行这个命令,由于之前设置了conda的清华安装源,结果命令卡住了,然后参考这个链接https://zhuanlan.zhihu.com/p/378258193用这个命令“conda config --remove-key channels” 将安装源命令设置成了default值

python自动化之路-day8

线程,进程,协程等python thread模块线程有两种调用方式:直接调用:import threadingimport timedef sayhi(num): print("threading - > %s"%num ) time.sleep(2)if __name__ == '__main__': t1 = threading.Th