I used to work with the default Python IDLE for short scripts.
When I needed to manage a larger project, I installed Spyder. But, simply downloading Spyder from the website and installing has it's own difficulties. It comes with it's own Python interpreter, making installation of modules complicated.
For using plain Spyder with Anaconda or anything, here is what worked for me:
- Install Python interpreter
- From cmd, do 'pip install sypder'
- To run spyder, just type 'spyder'
That's it! Now you have Spyder without any external interpreter. All modules can be installed normally with pip install and accessed from Spyder.
(this was successfully tested on Windows 10 with Python 3.9)
Edit: Issues on Python 3.10: "cannot import name 'MutableMapping' from 'collections'"
Comments
Post a Comment