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.
我以超级用户身份安装了 pafy 的软件包,但我以普通用户身份运行 python。所以我实际上不能使用该模块。如何删除它以便以普通用户身份使用 pip install 重新安装?先感谢您。
移动:
如果您pafy使用sudo pip或安装sudo python -m pip:
pafy
sudo pip
sudo python -m pip
sudo pip uninstall pafy # OR sudo python -m pip uninstall pafy
如果您python-pafy使用另一个包管理器安装(例如apt-get,您需要使用该包管理器将其删除(sudo apt-get remove python-pafy)
python-pafy
apt-get
sudo apt-get remove python-pafy
重新安装:
python -m pip install --user pafy