尝试在conda中安装OSMnx时遇到了一些麻烦。根据github https://github.com/gboeing/osmnx上的OSMnx文档,我必须在conda提示符下运行以下代码进行安装
conda config --prepend channels conda-forge
conda create -n ox --strict-channel-priority osmnx
但是,我收到一些我不理解的警告和错误。
(base) C:\WINDOWS\system32>conda config --prepend channels conda-forge
Warning: 'conda-forge' already in 'channels' list, moving to the top
(base) C:\WINDOWS\system32>conda create -n ox --strict-channel-priority osmnx
usage: conda [-h] [-V] command ...
conda: error: unrecognized arguments: --strict-channel-priority
我不知道我在做什么错。这些是我的conda规格,以备不时之需
conda version : 4.5.4
conda-build version : 3.10.5
python version : 3.6.5.final.0
非常感谢您的帮助。
答案 0 :(得分:1)
您正在使用conda 4.5.4,这已经有两年了。更新到最新版本,就可以了:conda update conda
。