配置过程记录
文章平均质量分 56
Kerin637
这个作者很懒,什么都没留下…
展开
-
Pycharm安装cv2
直接安装会失败,在terminal中使用命令就好了pip install opencv-contrib-python原创 2021-12-08 09:44:11 · 3838 阅读 · 6 评论 -
pytorch的安装及其在pycharm中的使用
1.首先配置Anaconda虚拟环境在Anaconda Prompt中输入conda create -n pytorch python==3.72.在该环境中安装pytorch因为前面已经安装了cuda10.0.130和cudnn,安装与之匹配的pytorch版本,官网中寻找,但是官网的貌似不太对,最后看的是这个回答pip install torch==1.2.0 torchvision==0.4.0 -f https://download.pytorch.org/whl/torch_stab原创 2021-07-25 16:52:34 · 36076 阅读 · 9 评论 -
Windows10下基于NVIDIA GeForce MX150安装TensorFlow-GPU过程记录
电脑中已经安装了vitual studio2019和Anaconda,在此基础上进行安装。一. 安装cuda首先参考博客明确CUDA版本和英伟达驱动版本对应关系,我电脑驱动程序版本:417.81,所以选择CUDA10.0。开始时尝试安装过低版本的cuda,会报这样的错误,选择安装和系统驱动程序匹配的cuda的版本(即10.0版本就可以通过系统检查了)。去官网下载cuda_10.0.130_win10_network.exe,进入安装程序。这里会选择安装类型,我这里选择的是network,原创 2021-07-23 09:19:39 · 607 阅读 · 1 评论