anaconda - curses on windows 7 python -
i want use old cellular automata package called cage on windows7 anaconda install.
problem is uses curses
module, there no official install of.
i downloaded unofficial binary @ http://www.lfd.uci.edu/~gohlke/pythonlibs/#curses , /think/ installed it.
c:\users\mds>pip install c:\users\mds\downloads\curses-2.2-cp27-none-win_amd64.w hl processing c:\users\mds\downloads\curses-2.2-cp27-none-win_amd64.whl installing collected packages: curses installed curses-2.2 using pip version 8.1.1, version 9.0.0 available. should consider upgrading via 'python -m pip install --upgrade pip' command.
but inside spyder, when run 1 of modules (conway.py
) of cage package, complains @ _curses
module.
runfile('c:/users/mds/dropbox/_python/automata/cage-1.1.4/conway.py', wdir='c:/users/mds/dropbox/_python/automata/cage-1.1.4') c:/users/mds/dropbox/_python/automata/cage-1.1.4/conway.py:13: runtimewarning: parent module 'cage' not found while handling absolute import import curses traceback (most recent call last): file "<ipython-input-7-74fbffe46b40>", line 1, in <module> runfile('c:/users/mds/dropbox/_python/automata/cage-1.1.4/conway.py', wdir='c:/users/mds/dropbox/_python/automata/cage-1.1.4') file "c:\anaconda2\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 699, in runfile execfile(filename, namespace) file "c:\anaconda2\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 74, in execfile exec(compile(scripttext, filename, 'exec'), glob, loc) file "c:/users/mds/dropbox/_python/automata/cage-1.1.4/conway.py", line 13, in <module> import curses file "c:\anaconda2\lib\curses\__init__.py", line 15, in <module> _curses import * importerror: no module named _curses
would have thought installing curses have installed whatever dependent pacakges requires...
Comments
Post a Comment