-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apache commons dependency issue #133
Comments
Did you ever get this working? I'm having the same problem - though I'm using 0.12.3 for scala 2.11. |
I had same error.
I solved this problem by using a package which is And, I got two other errors, like below.
Hope it helps you solve your problem. |
Thanks @fwani for your help! |
Thanks @jakeatmsft and @fwani for your solutions. |
What does this mean - "Beside the bundled jars"?_ I thought the only ones need are the 5(4) mentioned here in the red rectangle. See my issue - #464
@quanghgx , @jakeatmsft and @fwani |
Expected Behavior
I'm trying to use the library to read an excel file using the following command:
val df = spark.read.format("com.crealytics.spark.excel").option("dataAddress","PARTA").option("useHeader","true").load("myfileXLSX")
Current Behavior
I'm getting the following NoClassDefFoundError:
Before executing the previous command I'm importing the following:
import spark.implicits._
import com.crealytics.spark.excel._
If I don't import spark.implicits._ I'm also getting some errors when importing the spark-excel library:
I'm using the version 0.12.0 of the library.
The text was updated successfully, but these errors were encountered: