在 python 中升级软件包

upgrading packages in python

我正在寻找更新 Python 包。但是通过运行这段代码

pip install --upgrade pandas

在命令提示符中,我收到以下错误

ERROR: Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: 'c:\programdata\anaconda3\lib\site-packages\pip\_internal\build_env.py'
Consider using the `--user` option or check the permissions.

有什么问题?

您没有权限。向您的命令添加标志 --user 或以管理员身份打开终端。