OSMnx无法在Juypter Notebook中打开

时间:2020-01-05 19:58:40

标签: jupyter-notebook conda osmnx

我使用以下代码通过conda下载了osmnx:

conda config --prepend channels conda-forge
conda create -n ox --strict-channel-priority osmnx

这来自osmnx文档:https://osmnx.readthedocs.io/en/stable/

我可以看到该模块已下载,因为在Anaconda提示中,我可以键入conda activate ox并且它可以工作。但是,当我进入Jupyter笔记本并输入

import osmnx as ox

我收到以下错误:

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-11-7e05e48535cd> in <module>
----> 1 import osmnx as ox
      2 
      3 

ModuleNotFoundError: No module named 'osmnx'

请告知我可以做什么。谢谢

1 个答案:

答案 0 :(得分:1)

在您的终端中,运行:

conda config --prepend channels conda-forge
conda create -n ox --strict-channel-priority osmnx jupyterlab
conda activate ox
python -m ipykernel install --user --name ox --display-name "Python (ox)"
jupyter lab

这会将OSMnx和JupyterLab安装到名为ox的conda环境中,激活环境,在该环境中安装ipython kernel,然后启动JupyterLab。

另请参见