当前位置:   article > 正文

ubunutu20.04 pycharm使用anaconda下环境(主要是pytorch)_ubunatu怎么用pycharm创建一个pytorch

ubunatu怎么用pycharm创建一个pytorch

新建pycharm项目和anaconda环境

打开pycharm,new project
在这里插入图片描述在这里插入图片描述new environment using conda
修改环境名 项目名,python版本选择3.9(我的电脑pyTorch在3.9上跑通了,其他版本暂时没试)

create

打开终端,进入刚创建的conda环境
在这里插入图片描述
在该环境安装pyTorch,即在终端输入

pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116
  • 1

在这里插入图片描述
在pyCharm验证是否成功

import torch

def print_hi(name):
    # Use a breakpoint in the code line below to debug your script.
    print(f'Hi, {name}')  # Press Ctrl+F8 to toggle the breakpoint.

# Press the green button in the gutter to run the script.
if __name__ == '__main__':
    print_hi('PyCharm')
    print(torch.cuda.is_available())
    print(torch.__version__)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述
输出结果如下:
在这里插入图片描述
成功!

新建pycharm项目,使用现有anaconda环境

new project ,使用默认环境
在这里插入图片描述
File-settings ,打开设置
在这里插入图片描述
点击python Interpreter
点击右上角 add Interpreter
在这里插入图片描述
选择add local interpreter,点击conda environment,选择 using existing environment,选择已配置好的环境,点击ok
在这里插入图片描述
点击右下角apply
在这里插入图片描述
点击ok

在pyCharm验证是否成功

import torch

def print_hi(name):
    # Use a breakpoint in the code line below to debug your script.
    print(f'Hi, {name}')  # Press Ctrl+F8 to toggle the breakpoint.

# Press the green button in the gutter to run the script.
if __name__ == '__main__':
    print_hi('PyCharm')
    print(torch.cuda.is_available())
    print(torch.__version__)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述
输出结果如下:
在这里插入图片描述
成功!

新建pycharm项目,使用现有anaconda环境-方法2

在这里插入图片描述
new project
点击 previously configured interpreter
选择已有环境

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/401995
推荐阅读
相关标签
  

闽ICP备14008679号