OSMnx wont open in Juypter Notebook

徘徊边缘 提交于 2020-06-29 03:39:13

问题


I downloaded osmnx via conda using the code:

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

This comes from the osmnx documentation: https://osmnx.readthedocs.io/en/stable/

I can see the module has downloaded because in the Anaconda Prompt I can type conda activate oxand it works. However when I go into my jupyter notebook and type

import osmnx as ox

I get the following error:

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

ModuleNotFoundError: No module named 'osmnx'

Please advise as to what I can do. Thanks


回答1:


In your terminal, run:

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

This installs OSMnx and JupyterLab into a conda environment called ox, activates the environment, installs an ipython kernel in the environment, then launches JupyterLab.

See also

  • Conda environments not showing up in Jupyter Notebook
  • Conda environments not showing up in Jupyter Notebook
  • How to use Jupyter notebooks in a conda environment?
  • How to add conda environment to jupyter lab
  • Link Conda environment with Jupyter Notebook
  • In which conda environment is Jupyter executing?


来源:https://stackoverflow.com/questions/59603695/osmnx-wont-open-in-juypter-notebook

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!