Yes, it is possible, but very complicated. Therefore I will first give instructions how to use Anaconda:
2. Start the downloaded installer and follow its instructions.
3. Start the Anaconda Navigator.
4. Launch the CMD.exe Prompt.
5. Enter `conda uninstall scikit-learn`. (optional since preinstalled)
6. Enter `conda install -c conda-forge scikit-learn`. (optional since preinstalled)
7. Install Spyder 5.0.3 using `conda install -c conda-forge spyder`.
Now how to use the standalone Spyder. First of all you will need to use the python distribution from
python.org. Then:
1. Install stand-alone Spyder from their website.
2. Open the command line (cmd.exe)
3. Enter `python --version`, this should return something with "Python 3".
4. Enter `python -m pip install -U pip`.
5. Enter `pip install scikit-learn`.
6. Enter `pip install spyder-kernels==2.0.*`
7. Enter `python -c "import sys; print(sys.exec_prefix)`.
8. Remember the output. It is the path to your python installation. (Copy it or leave the window open).
9. Open Spyder.
10. Go to the Spyder preferences (Tools > Preferences)
11. Navigate to the Python interpreter tab in the preferences.
12. Choose 'Use the following Python interpreter".
13. Enter the path from step 8 into the line below and append '/python.exe'. You can verify that this file exists by clicking on the document icon next to the entry.
14. Klick OK.
15. Restart the console/Spyder.