Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
收到错误。我已经让 Python 3.6.3 正常运行,并且在我的脚本目录中看到了 pip、pip3 和 pip3.6。我输入“C>\pip3 install virtualenv”,它开始,“收集virutalenv ...安装收集的包”,然后是“PermissionError:[Errno 13] Permission denied...我错过了什么?
根据文档,您应该指定要为其安装 virtualenv 的用户。
py -m pip install --user virtualenv
除非您以管理员身份登录。