我使用 安装了此包“python-swiftclient 3.5.0”,sudo apt install python3-swiftclient
但是当我尝试使用 删除它时sudo apt-get remove python-swiftclient
,我收到以下消息:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'python-swiftclient' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
但是当我输入swift --version
. 我收到此消息:
python-swiftclient 3.5.0
请帮助我,因为我是 ubuntu 新手。我正在运行 Lubuntu 18.04。
答案1
您使用了错误的包名称:
您安装的包的名称是python3-swiftclient
。
您尝试删除包,sudo apt-get remove python-swiftclient
但您应该使用sudo apt-get remove python3-swiftclient