linux卸载protobuf
时间: 2023-09-23 21:10:50 浏览: 117
Linux下caffe及Faster-rcnn(python版)安装全过程
如果您是通过源码编译安装的 Protobuf,可以按照以下步骤进行卸载:
1. 进入 Protobuf 源码目录
2. 执行 `make uninstall` 命令,卸载 Protobuf
如果您是通过包管理器安装的 Protobuf,可以根据不同的操作系统和包管理器执行相应的卸载命令,例如:
- 在 Ubuntu 上使用 apt-get 包管理器安装的 Protobuf,可以执行 `sudo apt-get remove protobuf-compiler` 命令卸载。
- 在 CentOS 上使用 yum 包管理器安装的 Protobuf,可以执行 `sudo yum remove protobuf-compiler` 命令卸载。
- 在 macOS 上使用 Homebrew 包管理器安装的 Protobuf,可以执行 `brew uninstall protobuf` 命令卸载。
阅读全文