You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first example in README.md requires CSV to be installed:
using UrlDownload
using DataFrames
url ="https://raw.githubusercontent.com/Arkoniak/UrlDownload.jl/master/data/ext.csv"
julia> df =urldownload(url) |> DataFrame
ERROR: ArgumentError: Package CSV not found in current path:- Run `import Pkg; Pkg.add("CSV")` to install the CSV package.
Is it expected? If so, maybe a using CSV should also be added to the doc.
The text was updated successfully, but these errors were encountered:
Yes, this is expected. For this package to work, you should install necessary packages (this Error which you received tells you explicitly which one you need), but there is no need to add using CSV, since package import packages on it's own.
Thank you for raising this issue, I should add this explanation to README.
The first example in
README.md
requiresCSV
to be installed:Is it expected? If so, maybe a
using CSV
should also be added to the doc.The text was updated successfully, but these errors were encountered: