I'm trying to compile a java file which is importing hadoop packages.
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
But it fails with a message
error: package org.apache.hadoop.fs does not exist
I googled for this error and it seems that I have to edit $PATH
But I have no idea to what I have to fix the path.
How can I solve this import error?