Conda 环境下 安装geopy

在conda自带的navigator 里面,搜不到geopy,所以需要自己下载到conda环境中。
参考了下面这篇帖子的方法2,成功完成
https://blog.csdn.net/learn_tech/article/details/79861683

主要输入的代码如下

# python 2.7
# 打开conda prompt: 不是系统cmd prompt:
# try:
conda install tensorflow
# return:
# Package not found error: the packages are not available from current  channels:
# 意味着现在默认路径找不到源

anaconda search -t conda geopy
# 这里(anaconda search -t conda 库名)可以选择自己安装的源

# return the available packages and the location
# 我们在列出的表里面见到Primer文件夹下有可用的包,于是
anaconda show Primer/geopy

# prompt给出提示,可以指定源安装
# 把它提示的语句抄一遍:
conda install --channel https://canda/anaconda.org/Primer geopy

#提示yes no后,选择 yes

#安装完成后,使用
conda list
#查看现在安装的包
#可以看到 geopy


你可能感兴趣的:(Conda 环境下 安装geopy)