강의

멘토링

커뮤니티

Inflearn Community Q&A

znznwkdrns5374's profile image
znznwkdrns5374

asked

AI Agent Development Using LangGraph (feat. MCP)

2.0 [Update] Virtual Environment Setup and Notebook Utilization Tips (feat. uv)

uv sync 입력 후 패키지 설치 도중 실패 합니다.

Written on

·

258

0

os: 윈도우10입니다

uv version: uv 0.7.5 (9d1a14e1f 2025-05-16)

 

  x Failed to build `uvloop==0.21.0`
  |-> The build backend returned an error
  `-> Call to `setuptools.build_meta.build_wheel` failed (exit code: 1)

      [stderr]
      Traceback (most recent call last):
        File "<string>", line 14, in <module>
          requires = get_requires_for_build({})
        File "C:\Users\wyhil\AppData\Local\uv\cache\builds-v0\.tmpwlGSc0\Lib\site-packages\setuptools\build_meta.py", line 331, in get_requires_for_build_wheel
          return self._get_build_requires(config_settings, requirements=[])
                 ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        File "C:\Users\wyhil\AppData\Local\uv\cache\builds-v0\.tmpwlGSc0\Lib\site-packages\setuptools\build_meta.py", line 301, in _get_build_requires
          self.run_setup()
          ~~~~~~~~~~~~~~^^
        File "C:\Users\wyhil\AppData\Local\uv\cache\builds-v0\.tmpwlGSc0\Lib\site-packages\setuptools\build_meta.py", line 317, in run_setup
          ~~~~^^^^^^^^^^^^^^^^
        File "<string>", line 8, in <module>
          import setuptools.build_meta as backend
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      RuntimeError: uvloop does not support Windows at the moment

      hint: This usually indicates a problem with the package or the build environment.

 

 

프롬프트엔지니어링llmai-agentlanggraphmcp

Answer 1

1

jasonkang님의 프로필 이미지
jasonkang
Instructor

안녕하세요!

에러메세지로 추정해보자면 uvloop을 윈도우에서 지원하지 않아서 발생하는 문제로 보입니다.

아래 명령어를 통해서 uvloop 을 제거하시고 다시 sync해보시겠어요?

uv remove uvloop
uv sync

 

znznwkdrns5374's profile image
znznwkdrns5374

asked

Ask a question