我想通过Happybase将Pyspark与Hbase连接起来。但是我在beginnig遇到了这个错误:
(pyenv)hduser @ master:〜$ python -c'导入happybase'
附近的语法错误
(pyenv)hduser @ master:〜$ python -c connection = happybase.Connection(“ somehost”) bash:意外令牌'('
答案 0 :(得分:0)
首先,连接命令中存在语法错误。其次,如果要在后续步骤中使用happybase库,则必须按照以下方式从bash将整个脚本运行到单个命令中,以便维护会话。
python -c "import happybase;connection = happybase.Connection('localhost')"
另一个选择是创建一个Python .py
文件,然后从bash中运行该文件。