当前位置:  开发笔记 > 编程语言 > 正文

在vscode中启动conda虚拟环境的思路详解

这篇文章主要介绍了在vscode中启动conda虚拟环境的思路详解,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

问题:cudatoolkit cudnn 通过conda 虚拟环境安装,先前已经使用virtualenv安装tf,需要在conda虚拟环境中启动外部python虚拟环境

思路:conda prompt

即将 [虚拟环境位置] 以参数形式传入 [activate.bat]

VSOCDE中的设置

添加以下语句

{
  "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe", #选用cmd作为命令行窗口
  "terminal.integrated.shellArgs.windows": [
    "/k",
    "C:\\Users\\PC\\miniconda3\\Scripts\\activate.bat C:\\Users\\PC\\miniconda3\\envs\\tfcuda101" #此处修改为你conda虚拟环境文件夹位置
  ],
  "python.pythonPath": "c:\\Users\\PC\\tensorflow2\\Scripts\\python.exe", #选择virtualenv下的python路径
}

搞定,下次进入相关项目自动加载conda环境与virtualenv环境

验证成功加载cuda库:

python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))"

到此这篇关于在vscode中启动conda虚拟环境的思路详解的文章就介绍到这了,更多相关vscode中启动conda虚拟环境内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有