I'm learning fastapi from Youtube class
I succeeded. except for the [uvloop] module
I realized that uvloop doesn't install in windows and my development environment is Windows + PyCharm.
How are others using this module? Are they only using mac?
What should I do?
Should I view other videos or remove uvloop? or replace uvloop?
Help me.

Fastapi itself does not depend on uvloop. The transient extra dependency UVIcorn installed with ao called standard extras however does. However, UVicorn[standard] is just an extra dependency and not a required one. So if you just install fastapi without any extras and uvicorn without extras you should be good to go.