尝试安装python包时显示警告

hec6srdp  于 2023-01-24  发布在  Python
关注(0)|答案(2)|浏览(349)

当我尝试运行!pip install tweepy时,它显示如下警告。

WARNING: Failed to write executable - trying to use .deleteme logic
    ERROR: Could not install packages due to an OSError: [WinError 2] The system cannot find the file specified: 'c:\\python39\\Scripts\\chardetect.exe' -> 'c:\\python39\\Scripts\\chardetect.exe.deleteme'

我该怎么解决这个问题,请你帮帮我。

um6iljoc

um6iljoc1#

我也面临着类似的问题:
要解决:

python -m pip install -U pip --user

运行上面的命令并再试一次.

dxxyhpgq

dxxyhpgq2#

发生此错误的原因是OS权限不足
如果你正在windows中工作:
以管理员身份运行命令行并键入:

py -m pip install pip-run

然后安装软件包

py -m pip install tweepy

相关问题