I am new to Python and hug some basic concepts. I come from PHP background. The following is the definition / breakdown of the problem I am facing:
I installed anaconda , which had many libraries and tools on my system. This is a kind of "python master environment"
Then I created and downloaded a virtualenv . In this virtualenv, I downloaded several packages that I liked as pip install simplekml , pip install ipython
Now I opened the open spyder , and in the iPython console I tried import simplekml , and this gave me an import error. I read about this problem on the Internet and he said that in spyder I need to point to python in my virtualenv (using tools> preferences> python interpreter), or should I make pip install spyder from my virtualenv and use this version.
I tried both. I installed spyder in my virtualenv and then in the iPython console when I import simplekml received an error:
ModuleNotFoundError: No module named 'simplekml'
If I go to the terminal and open iPython and type the same thing, then it works fine. How can I load this terminal in spyder?
I struggled with this watch, so any help you provide is greatly appreciated!
source share