Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
814 views
in Technique[技术] by (71.8m points)

python - Spyder Module Import

I am trying to import cv2 module in Spyder.app but somehow it does not import. By the way I am able to import it in a terminal. Can anyone of you guys please help me?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This is what you need to do:

  1. Open a terminal and run python or ipython.

  2. In there execute these two commands:

    import sys

    sys.executable

  3. Copy the output of the last command

  4. Open Spyder and go to

    Spyder > Preferences > Console > Advanced settings > Python Executable

    Select the option

    Use the following Python interpreter

    and paste there the result of step 3 (this option is only available in Spyder 2.2.3 or newer).

  5. Finally go to Interpreters > Open a Python interpreter. This will open a new console that will be running the same Python version that you use in a terminal.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...