Issue
If I click on the place where the menu bar should be, it shows options, but a black window still exists, so this is a real problem.
This is what the problem looks like:
Solution
Yes, as EPo said, pip is a bad command to use with Spyder. You should use the Anaconda distribution of python and then you can use the conda command to properly install Spyder. conda install spyder
will install the latest spyder. I'd also recommend using virtual environments. Tou can create a virtual environment by typing: conda create -n yourenvname python=x.x anaconda
. You activate this by typing: source activate yourenvname
. The necessary comands and methods to use can be found here and here.
Answered By - Natsfan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.