What is the correct way to install the delta module in python??
In the example they import the module
from delta.tables import *
but i did not find the correct way to install the module in my virtual env
Currently i am using this spark param -
"spark.jars.packages": "io.delta:delta-core_2.11:0.5.0"
Because Delta's Python codes are stored inside a jar and loaded by Spark, delta
module cannot be imported until SparkSession/SparkContext is created.