# Julia Pkg (CSV DataFrames Eirene)

**URL:** https://discourse.julialang.org/t/julia-pkg-csv-dataframes-eirene/112039
**Category:** New to Julia
**Created:** [March 24, 2024, 11:35am UTC](https://discourse.julialang.org/t/julia-pkg-csv-dataframes-eirene/112039 "2024-03-24T11:35:37Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Meshach\_Ndlovu](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/meshach_ndlovu/32/207957_2.png) [@Meshach\_Ndlovu](https://discourse.julialang.org/u/Meshach_Ndlovu)
#### Post date: [March 24, 2024, 11:35am UTC](https://discourse.julialang.org/t/julia-pkg-csv-dataframes-eirene/112039/1 "2024-03-24T11:35:37Z")

</div>

Hello esteemed experts,

I am seeking assistance with running specific Julia packages in a Jupyter notebook. However, I encountered the following error message. As a newcomer to Julia, I would greatly appreciate your guidance on resolving this issue.

Thank you!

#error  
Precompiling Eirene  
✗ CategoricalArrays  
✗ DataFrames  
✗ CSV  
Info Given Eirene was explicitly requested, output will be shown live  
┌ Warning: Kaledio is not available on this system. Julia will be unable to produce any plots.  
└ @ PlotlyBase C:\Users\Wami.julia\packages\PlotlyBase\NxSlF\src\kaleido.jl:58  
ERROR: LoadError: InitError: SystemError: opening file “C:\Users\Wami\.julia\packages\PlotlyJS\AhkM5\deps\build.log”: No such file or directory  
Stacktrace:  
[1] systemerror(p::String, errno::Int32; extrainfo::Nothing)  
@ Base .\error.jl:176  
[2] systemerror  
@ .\error.jl:175 [inlined]  
[3] open(fname::String; lock::Bool, read::Nothing, write::Nothing, create::Nothing, truncate::Nothing, append::Nothing)  
@ Base .\iostream.jl:293  
[4] open  
@ .\iostream.jl:275 [inlined]

---

<div class="post-metadata">

### Author: ![cormullion](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/cormullion/32/49131_2.png) [@cormullion](https://discourse.julialang.org/u/cormullion)
#### Post date: [March 24, 2024, 2:05pm UTC](https://discourse.julialang.org/t/julia-pkg-csv-dataframes-eirene/112039/2 "2024-03-24T14:05:51Z")

</div>

Hi! There have been issues with installation of these packages.

For example, [this Eirene issue’s comment](https://github.com/Eetion/Eirene.jl/issues/39#issuecomment-851214208) shows the same error as yours.

Perhaps you should first try to install the components - Kaleido and Plotly … - and then try to install Eirene.jl.

(I don’t know what any of these packages do - just searched for relevant issues…)

---

<div class="post-metadata">

### Author: ![mkitti](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mkitti/32/12459_2.png) [@mkitti](https://discourse.julialang.org/u/mkitti)
#### Post date: [March 24, 2024, 9:05pm UTC](https://discourse.julialang.org/t/julia-pkg-csv-dataframes-eirene/112039/3 "2024-03-24T21:05:28Z")

</div>

> [@Meshach\_Ndlovu](#):
>
> Eirene

I attempted to submit an update here:

> <https://github.com/Eetion/Eirene.jl/pull/49>
>
> This updates the package to take advantage of the latest versions of its depende…ncies as well as Julia 1.10

You can try my updated version as follows:

```julia
using Pkg
pkg"add https://github.com/mkitti/Eirene.jl#mkitti-update-1_4_0"

```
