ubunutu20.04 pycharm使用anaconda下环境(主要是pytorch)

本文介绍了如何在PyCharm中新建项目时创建或使用Anaconda环境,并详细步骤配置Python3.9,以及在环境中安装pyTorch,验证安装成功的流程。包括通过设置->PythonInterpreter添加现有环境的方法,以及通过选择previouslyconfiguredinterpreter快速选择环境。
摘要由CSDN通过智能技术生成

新建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

在这里插入图片描述
在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__)

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

新建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__)

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

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

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值