我正在尝试使用 Big Sur OS 在我的 MAC 上安装 pytest。我目前有 python 2.7 和 python 3.9,但 python 2.7 是默认安装。 当我运行命令时:
% pip install -U pytest
出现错误:
OSError: [Errno 1] Operation not permitted: '/tmp/pip-lQw0PM-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pyparsing-2.0.1-py2.7.egg-info'
请问我该如何解决?
谢谢
答案 0 :(得分:0)
也许您应该尝试创建 virtualenv 并尝试在其中安装 pytest。
或
这可能是python 2.7 & 3.9的pip冲突,可以运行
python3.9 -m pip install pytest