我最近使用Docker使用以下命令
安装了FEniCSTerminal> curl -s https://get.fenicsproject.org | bash
当我在fenicsproject
会话时,每件事情都很有效。在此会话中,当我使用which python
时,我得到以下内容
fenics@7016ac685f58:~$ which python
/usr/bin/python
但是,当我尝试在Jupyter Notebook中使用以下命令时
from fenics import *
我收到以下错误
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-4-66a9e72f2de9> in <module>()
2 # Poisson solver in Python using FEniCS
3 # import FEniCS
----> 4 from fenics import *
5 #
6 # create mesh and denfine functional space
ImportError: No module named fenics
我使用的是anaconda提供的Python,下面给出了有关python的详细信息
Python 2.7.12 |Anaconda custom (x86_64)| (default, Jul 2 2016, 17:43:17)
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://anaconda.org
和which python
为我提供了以下路径
h147:project0 vikas$ which python
/Users/vikas/anaconda/bin/python
我不知道如何解决这个问题。请帮我。
答案 0 :(得分:0)
我有同样的问题。每当我通过Anaconda使用fenics时,都会发生一些奇怪的事情。我停用了Anaconda,并在系统中运行了fenics。效果很好。