0

SimPyを初めて使用します。easy_installを使用してSimPyモジュールをインストールし、コマンドラインで試しfrom SimPy.Simulation import *ましたが、次のエラーが発生します。

Python 2.6.7 (r267:88850, Aug 22 2011, 14:13:38) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from SymPy.Simulation import *
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named SymPy.Simulation

easy_installを使用してパッケージをインストールします。simplejsonを問題なくインストールします。simplejsonをインポートしても、上記のエラーは発生しません。更新を行い、easy_installでSymPyモジュールが正常に更新されましたが、SimPyモジュールをインポートできません。

[/Library/Python/2.6/site-packages]$easy_install -U SimPy
Searching for SimPy
Reading http://pypi.python.org/simple/SimPy/
Reading http://SimPy.SourceForge.net
Reading http://simpy.sourceforge.net/
Reading https://sourceforge.net/projects/simpy/files/
Reading http://pypi.python.org/simple/SimPy/simpy.sourceforge.net
Reading http://sourceforge.net/project/showfiles.php?group_id=62366
Best match: SimPy 2.2
Processing SimPy-2.2-py2.6.egg
SimPy 2.2 is already the active version in easy-install.pth

Using /Library/Python/2.6/site-packages/SimPy-2.2-py2.6.egg
Processing dependencies for SimPy
Finished processing dependencies for SimPy

ファイルも確認しましたeasy-install.pthが、すべて正しく追加されているようです。

[/Library/Python/2.6/site-packages]$more easy-install.pth 
import sys; sys.__plen = len(sys.path)
./simplejson-2.1.3-py2.6.egg
./SimPy-2.2-py2.6.egg
import sys; new=sys.path[sys.__plen:]; del sys.path[sys.__plen:]; p=getattr(sys,'__egginsert',0); sys.path[p:p]=new; sys.__egginsert = p+len(new)

私がこれについて何か助けを得ることができれば素晴らしいでしょう。

一番; NH

4

1 に答える 1

1

試す:

from sympy import *

http://docs.sympy.org/0.7.1/tutorial.html#first-steps-with-sympy

于 2011-10-21T04:40:46.543 に答える