Spyder Module Import
Solution 1:
This is what you need to do:
Open a terminal and run
python
oripython
.In there execute these two commands:
import sys
sys.executable
Copy the output of the last command
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).
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.
Solution 2:
I had a similar issue. Ubuntu 1804, Python 3.6.5, Spyder 3.2.8.
Could load e.g. quandl and other package in terminal virtual env but not in spyder despite playing with PYTHONPATH and directories for ages.
Resolved with:
conda install ipykernel cloudpickle
Post a Comment for "Spyder Module Import"