Asked
Active
Viewed 76 times
-1

Namratha M
- 1
- 1
- 2
-
I have done a pip install not anaconda install. – Namratha M Jan 21 '20 at 14:22
1 Answers
0
I see now that the problem is that you're using Python 3.8, following the previous threads try the following:
- Locate and open the asyncio.py file. In my case it's in C:\Users[USERNAME]\AppData\Local\Programs\Python\Python38-32\Lib\site-packages\tornado\platform\asyncio.py
- After the lineimport asyncio add the following:
import sys
if platform == "win32":
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

Gorlomi
- 515
- 2
- 11
-
I updated to version 6.0.2 now but still the same error persists :( – Namratha M Jan 21 '20 at 14:35
-
try running: pip3 uninstall jupyter and then pip3 install jupyter. or just pip in case you run into problems – Gorlomi Jan 21 '20 at 15:52
-
-
original solution from @gdlmx from https://stackoverflow.com/questions/54805213 – Gorlomi Jan 21 '20 at 20:24