2

重複の可能性:
ubuntu /usr/bin/env: python: No such file or directory

私は Hadoop ストリーミングの新しい学習者です。そして、mapreduce の学習で問題に遭遇しました。これが私のコードですmapper.py

#!/usr/bin/env python 

import sys

# input comes from STDIN (standard input)
for line in sys.stdin:
    # remove leading and trailing whitespace
    line = line.strip()
    # split the line into words
    words = line.split()
    # increase counters
    for word in words:
        # write the results to STDOUT (standard output);
        # what we output here will be the input for the
        # Reduce step, i.e. the input for reducer.py
        #
        # tab-delimited; the trivial word count is 1
        print '%s\t%s' % (word, 1)

次を実行すると:

hadoop@Chris-ubuntu:/home/test$ echo "I love China I love ieee I love python" | /home/test/mapper.py 

私は結果を得ました:

: No such file or directory

ただし、ファイルが実際にそのパスに存在することは確かですls。だから私はどうすれば問題を解決できるのだろうかと思っています。

4

1 に答える 1

0

Pythonファイルはデフォルトでは実行可能ではないため、Pythonインタープリターにファイルを実行するように指示する必要があります。

echo "I love China I love ieee I love python" | python2 /home/test/mapper.py

chmod +x mapper.py または、次のように入力してファイルを実行可能にすることができます。

echo "I love China I love ieee I love python" | /home/test/mapper.py

于 2012-11-15T14:41:38.667 に答える