user3754559
user3754559

Reputation: 27

ModuleNotFoundError: No module named 'tornado'

RESTART: C:\Users\alanp\AppData\Local\Programs\Python\Python37-32\FirstDayTornado.py

Traceback (most recent call last):

File "C:\Users\alanp\AppData\Local\Programs\Python\Python37-32\FirstDayTornado.py",

line 1, in < module> import tornado.ioloop ModuleNotFoundError: No module named 'tornado'

this is the error message i receive I am currently trying to run tornado's 'hello world' example https://www.tornadoweb.org/en/stable/

I am currently up-to-date with my python idle being version 3.7.2

Upvotes: 0

Views: 5014

Answers (1)

Abbas
Abbas

Reputation: 792

Seems like tornado isn't installed. Install it using the following command.

pip install tornado

Upvotes: 3

Related Questions