终端中的 pip 安装 pyautogui 错误
pip install pyautogui errors in terminal
当我尝试导入 pyautogui 时,它说找不到模块,并在命令行中安装它:
命令
pip3 install pyautogui
终端响应
Command "D:\pythonp\venv\Scripts\python.exe -u -c "import setuptools, tokenize;__file__='C:\Users\hp\AppData\Local\Temp\pip-install-1zr0j9qn\Pillow\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.re
ad().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\hp\AppData\Local\Temp\pip-record-gwxfcxoi\install-record.txt --single-version-externally-managed --compile --install-
headers D:\pythonp\venv\include\site\python3.8\Pillow" failed with error code 1 in C:\Users\hp\AppData\Local\Temp\pip-install-1zr0j9qn\Pillow\
在仔细查看我的项目周围的所有内容后,我意识到要导入工作,python 文件应该在 venv 文件夹中。
当我尝试导入 pyautogui 时,它说找不到模块,并在命令行中安装它:
命令
pip3 install pyautogui
终端响应
Command "D:\pythonp\venv\Scripts\python.exe -u -c "import setuptools, tokenize;__file__='C:\Users\hp\AppData\Local\Temp\pip-install-1zr0j9qn\Pillow\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.re
ad().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\hp\AppData\Local\Temp\pip-record-gwxfcxoi\install-record.txt --single-version-externally-managed --compile --install-
headers D:\pythonp\venv\include\site\python3.8\Pillow" failed with error code 1 in C:\Users\hp\AppData\Local\Temp\pip-install-1zr0j9qn\Pillow\
在仔细查看我的项目周围的所有内容后,我意识到要导入工作,python 文件应该在 venv 文件夹中。