本文介绍了无法在Jupyter笔记本中导入numpy的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是iPython / Jupyter的新手。 Python技能有限,但学习。我正在尝试将numpy导入为np并获得以下内容:

I am new to iPython/Jupyter. Python skills limited, but learning. I am trying to import numpy as np and get the following:

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-1-4ee716103900> in <module>()
----> 1 import numpy as np

/Users/jmmiii/Library/Enthought/Canopy_32bit/User/lib/python2.7/site-packages/numpy/__init__.py in <module>()
    166         return loader(*packages, **options)
    167 
--> 168     from . import add_newdocs
    169     __all__ = ['add_newdocs', 'ModuleDeprecationWarning']
    170 

/Users/jmmiii/Library/Enthought/Canopy_32bit/User/lib/python2.7/site-packages/numpy/add_newdocs.py in <module>()
     11 from __future__ import division, absolute_import, print_function
     12 
---> 13 from numpy.lib import add_newdoc
     14 
     15 ###############################################################################

/Users/jmmiii/Library/Enthought/Canopy_32bit/User/lib/python2.7/site-packages/numpy/lib/__init__.py in <module>()
      6 from numpy.version import version as __version__
      7 
----> 8 from .type_check import *
      9 from .index_tricks import *
     10 from .function_base import *

/Users/jmmiii/Library/Enthought/Canopy_32bit/User/lib/python2.7/site-packages/numpy/lib/type_check.py in <module>()
      9            'common_type']
     10 
---> 11 import numpy.core.numeric as _nx
     12 from numpy.core.numeric import asarray, asanyarray, array, isnan, \
     13                 obj2sctype, zeros

/Users/jmmiii/Library/Enthought/Canopy_32bit/User/lib/python2.7/site-packages/numpy/core/__init__.py in <module>()
      4 from numpy.version import version as __version__
      5 
----> 6 from . import multiarray
      7 from . import umath
      8 from . import _internal # for freeze programs

ImportError: dlopen(/Users/jmmiii/Library/Enthought/Canopy_32bit/User/lib/python2.7/site-packages/numpy/core/multiarray.so, 2): no suitable image found.  Did find:
    /Users/jmmiii/Library/Enthought/Canopy_32bit/User/lib/python2.7/site-packages/numpy/core/multiarray.so: mach-o, but wrong architecture

我的Mac上安装了几个python,其中有Yosemite,包括Canopy和Anaconda。我希望我的Jupyter笔记本能够使用Anaconda安装,包括与之相关的所有模块,库等。然而,似乎jupyter正在瞄准Canopy。因此,我认为我的问题可能源于错误的联系。

I have several python installs on my Mac, which has Yosemite, including Canopy and Anaconda. I want my Jupyter notebook to use the Anaconda install including all the modules, libraries, etc. associated with it. It seems however that jupyter is targeting Canopy instead. Thus, I think my problem might stem from the wrong linkage.

问题1 :我的结论是否有效?如果不是,我可能会缺少什么?

QUESTION 1: Does my conclusion hold water? If not, what might I be missing?

问题2 :我如何指导/链接jupyter与Anaconda而不是Canopy,以便我只从anaconda导入所有东西?

QUESTION 2: How can I direct/link jupyter with Anaconda and not with Canopy so that I import everything from anaconda only?

感谢大家的帮助!

推荐答案

您可以通过运行以下命令将PATH设置为从〜/ anaconda / bin目录执行python命令,方法是将其添加到.bah_profile。

You can either set the PATH to execute python commands from the ~/anaconda/bin directory by prepending it to your .bah_profile by running the following command.

export PATH="/Users/jmmiii/anaconda/bin:$PATH"

或者,您可以通过编辑〜/ .bash_profile并添加:

OR, you can create an alias for the command by editing your ~/.bash_profile and adding:

alias jupyter-notebook="/Users/jmmiii/anaconda/bin/jupyter-notebook"

这篇关于无法在Jupyter笔记本中导入numpy的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 05:35