解决PyCharm import torch包失败的问题
Anaconda3-5.1.0-MacOSX-x86_64.pkg 下载安装后,附带安装了pytorch包。
需要将环境调整到新的python3.6目录下。
1、在Project Interpreter选择“Show All...”菜单
Show All...
2、点击“+”,新增新的Interpreter
选择 : Add Local... 选择 : System Interpreter
3、选择Anaconda3目录下的python3.6文件。
地址 : /anaconda3/bin/python3.6
4、确定之后,会有一个长时间的Task过程,应该是在Updating Python Interpreter过程。
5、测试代码:
#!/usr/bin/python3 # -*- coding: UTF-8 -*- # @Author: **** # @Time: 2018/5/22 上午10:33 # @File: pto.py import torch x=torch.Tensor(2,3) print (x)
相关推荐
猛禽的编程艺术 2020-06-07
chuckchen 2020-10-31
Will0 2020-10-12
Dreamhome 2020-10-09
xirongxudlut 2020-09-28
星辰大海的路上 2020-09-13
chaochao 2020-08-31
猪猪侠喜欢躲猫猫 2020-08-17
快递小可 2020-08-16
shengge0 2020-07-26
巩庆奎 2020-07-21
张文倩数据库学生 2020-07-19
xirongxudlut 2020-07-18
Ericbig 2020-07-18
kyelu 2020-07-09
liangzhouqu 2020-07-07
GuoSir 2020-06-28
chaigang 2020-06-27