安装BCE-CLI
更新时间:2019-10-14
为了方便用户使用网络服务的API,百度智能云提供了可以通过命令行工具BCE CLI(Command Line Interface)调用VPC服务的方式,该工具基于BCE Python SDK实现。
前提条件
- BCE CLI命令行工具基于Python 2.7开发,根据操作系统安装相应Python 2.7,目前支持Linux。
操作步骤
-
准备Python环境。
- Linux环境
以Ubuntu和Redhat为例:
# Ubuntu $ sudo apt-get install python python-dev python-setuptools python-pip # Redhat $ sudo yum install python python-dev python-setuptools python-pip
说明: 安装完python后请先执行
python -V
查看python版本信息,确保python版本为2.7或之后的版本。对于使用百度智能云BCC Centos6.5系统的用户可以使用BCC Centos6.5镜像专用版CLI,详细安装步骤参考后边说明。 -
安装BCE CLI工具。进入CLI下载地址,在BOS CLI下根据您的操作系统选择适合的工具包。
Linux环境下,
(1)解压CLI工具包。
$ unzip bce-cli-0.8.3.zip
(2)将bcecli的库安装到系统的python目录下。
$ python setup.py install
至此,安装完成。
如果您需要安装BCC Centos6.5系统,参考下述操作步骤。
BCC Centos6.5镜像专用版CLI安装步骤:
首先下载BCC Centos6.5镜像专用版CLI,解压CLI工具包。
$ unzip bce-cli-0.10.8-centos6.5.zip
将bce-cli-0.10.8-centos6.5的安装目录加入环境变量中。
export PATH=bce-cli-path:$PATH
说明:比如bce-cli-0.10.8-centos6.5.zip 解压后的路径为 /home/user1/bce-cli-0.10.8-centos6.5,您需要将路径/home/user1/bce-cli-0.10.8-centos6.5/加入环境变量中。