0

I have installed Python 2.7.12 on my PC. So I run python using cmd, while the .py file is on my desktop, and the python is placed at C:\Python27.

I want to import Pyeda in my codes, but the cmd said ImportError: No module named pyeda.inter. I am too new to python, so I want to ask if I can do something to fix this problem? Thanks a lot!

from pyeda.inter import *

2 Answers2

0

The library isn't installed by default. On Windows you'll need to download and install the binaries from the PythonLibs page of Christoph Gohlke’s site.

Installation instructions for other OSes can be found here.

AbsoluteƵERØ
  • 7,816
  • 2
  • 24
  • 35
0

Just install the library PyEDA using the following command line pip3 install pyeda

Loich
  • 813
  • 11
  • 18