python opencv 无法读取文件, 在cv2.imshow() 函数报错 cv2.error: OpenCV(3.4.1) C:\Miniconda3\conda-bld\opencv-suite_1533128839831\work\modules\highgui\src\window.c ...
分类:
其他好文 时间:
2020-03-03 20:47:53
阅读次数:
76
介绍linux下的python虚拟环境管理软件pyenv的使用和配置方式
分类:
编程语言 时间:
2020-03-03 17:41:36
阅读次数:
75
1、在C:\Users\“用户名”\AppData\Roaming中创建文件夹pip 2、在pip文件夹中创建文件pip.ini 3、在pip.ini中输入以下内容,将源换为清华源 [global]timeout = 60000index-url = https://pypi.tuna.tsingh ...
分类:
其他好文 时间:
2020-03-03 10:32:00
阅读次数:
292
python 中pip配置清华源 命令: pip install https://codeload.github.com/sshwsfc/xadmin/zip/django2 anaconda配置镜像 Mac and Linux conda config --add channels https:/ ...
分类:
编程语言 时间:
2020-03-03 00:34:49
阅读次数:
110
首先下载项目 https://github.com/aleju/imgaug 然后建立conda独立环境 conda install six numpy scipy Pillow matplotlib scikit-image imageio conda install -c menpo openc ...
分类:
其他好文 时间:
2020-03-02 23:05:53
阅读次数:
373
python中%:1. 求模运算,相当于mod,也就是计算除法的余数,比如5%2就得到1。2. %还用在python的格式化输出,比如: a = 'test' print 'it is a %s' %(a) 打印的结果就是 it is a test 3.jupyter 中 %lsmagic Out[ ...
分类:
编程语言 时间:
2020-03-02 13:00:36
阅读次数:
70
cuda和NVDIA驱动版本不一致导致cuda不可用问题/require virtual c++ 14问题 待办桌面鼠标右键查看NVIDIA版本,然后查看安装的cuda版本(conda list 或者 pycharm查看都可以)cuda版本和NVIDIA版本对照表https://blog.csdn.... ...
分类:
编程语言 时间:
2020-03-02 00:53:15
阅读次数:
234
https://segmentfault.com/a/1190000015488033 理解async/await javascriptnode.js异步编程 更新于 2018-08-11 约 16 分钟 首先明确一个问题,为什么 Node.js 需要异步编程? JavaScript 是单线程的,在 ...
分类:
其他好文 时间:
2020-02-29 14:49:12
阅读次数:
88
1.在清华镜像源网站中下载 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 2.传入Ubuntu服务器某文件夹,cd 进入文件夹 bash执行安装 一路输入回车和yes ...
分类:
系统相关 时间:
2020-02-26 22:55:24
阅读次数:
82
1-下载anaconda3并安装 2-打开condaprompt 3-conda create --name pytorch python=3.6 遇到提示键入y 4-activate pytorch 5-从官网 https://pytorch.org/get-started/locally/ 选择 ...