anacanda3下jupyter notebook配置arcpy

anacanda3下jupyter notebook配置arcpy

运行环境:win10,jupyter notebook,ArcGIS10.4


关键点:anacanda3下创建正确的32位python2虚拟环境

提示:这里可以添加要学的内容

1、 安装anacanda3、arcgis
arcgis安装好以后,安装自带的python2,确认版本
比如我的是:python2.7.10
这一步很重要,版本的不一致,在调入arcpy时会显示以下错误:

import arcpy–ImportError :cannot import name ‘gp’ from ‘arcpy.geoprocessing’


![在这里插入图片描述](https://img-blog.csdnimg.cn/20200929134851592.png#pic_center)

anacanda3下创建正确的32位python2虚拟环境

uwt

//anacanda3切换成32位
set CONDA_FORCE_32BIT=1
//该语名可以看到当前的环境
conda info
// 确认是32位以前开始创建python2虚拟环境
conda create -n 你的虚拟环境名 python=x.x.x

// 比如我的设置如下
conda create -n python27  python=2.7.10

创建好环境后,调用新的环境

//activate your_env_name
activate python27  

在新的环境下,安装jupyter的python2内核

//activate your_env_name
python -m pip install ipykernel
python -m ipykernel install --user --name 环境名称

安装好kernel,启动python后就可以看到配置好的新的环境和内核了

arcpy路径的设置

网络上比较多,也不容易出错

你可能感兴趣的:(python)