I am working on python notebook. I have a tar file that is a package that I want to access as import statements. What command do I have to enter so that I can do something like this import com.netflix.iceberg.hadoop.HadoopTables
.
So my path where iceberg package is this: /home/abc/iceberg-0.2.0.7z
and my Jupyter notebook is on /home/abc/notebook1
. What should I run on my notebook1 to install dependency and make to available?
So I unzipped the file in the same path and tried this on a notebook but didn't work. Could someone help me out here?
import sys
sys.path.append('/home/abc/spark_work/iceberg-0.2.0')
import com.netflix.iceberg.hadoop.HadoopTables