I was just trying to install aiohttp in python.So I just typed in console like that: pip install aiohttp .At first, the installation went well, but finally I got the following Error.
C:\Users\1\AppData\Local\Programs\Python\Python312\Scripts>pip3 install aiohttpCollecting aiohttp Obtaining dependency information for aiohttp from https://files.pythonhosted.org/packages/4e/13/e929a6a50288e60ade3961b294d2f5aeb251b6579e4290a5397e484d0df9/aiohttp-3.9.1-cp312-cp312-win_amd64.whl.metadata ... ...Using cached frozenlist-1.4.1-cp312-cp312-win_amd64.whl (50 kB)Using cached yarl-1.9.4-cp312-cp312-win_amd64.whl (76 kB)Building wheels for collected packages: multidict Building wheel for multidict (pyproject.toml) ... error error: subprocess-exited-with-error× Building wheel for multidict (pyproject.toml) did not run successfully.│ exit code: 1╰─> [74 lines of output] ********************* * Accelerated build * ********************* running bdist_wheel ... ... running build_ext building 'multidict._multidict' extension error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/ [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for multidictFailed to build multidictERROR: Could not build wheels for multidict, which is required to install pyproject.toml-based projects[notice] A new release of pip is available: 23.2.1 -> 23.3.2[notice] To update, run: C:\Users\1\AppData\Local\Programs\Python\Python312\python.exe -m pip install --upgrade pipSo I tried the another one "pip install pyproject".But I can't solve.Please help me!