重複の可能性:
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
。だから私はどうすれば問題を解決できるのだろうかと思っています。