我已经安装了Pig。但当我运行命令检查猪版本。这是无效的选择。我编辑了bashrc文件。
执行.bashrc源码后,我收到以下错误:
hduser@ubuntu:~$ source .bashrc
bash: export: '=': not a valid identifier
bash: export: '/usr/local/pig': not a valid identifier
bash: export: '=': not a valid identifier
bash: export: 'PATH:/usr/local/pig/bin': not a valid identifier
bash: export: '=': not a valid identifier
bash: export: '/usr/local/hadoop/conf': not a valid identifier
答案 0 :(得分:0)
添加到export
文件的.bashrc
语句不应包含=
周围的空格
编辑~/.bashrc
,因为未设置$PATH
变量,请使用可执行文件的绝对路径。
/usr/bin/vi ~/.bashrc
将Pig
的这些行(取自评论)添加到bashrc文件
export PIG_HOME=/usr/local/pig-0.15.0
export PATH=$PIG_HOME/bin:$PATH