Help with `ERROR: CRC Failed : General.tar` and `ERROR: EOFError: read end of file`
EssamWisam opened this issue · 3 comments
Julia like to eat up much of my M1's ram
Two days ago, after being notified that I am out of ram, I noticed four Julia processes or something were running and they were consuming a huge amount of RAM. I use Julia on VSCode with either .jl
files or .ipynb
Jupyter notebooks. That day, I had to kill some Julia processes and the results afterwards were that every time I try to add, update, instantiate, etc. a package I get the error
ERROR: CRC Failed : General.tar
ERROR: EOFError: read end of file
Temporary working solution has been
ENV["JULIA_PKG_SERVER"] = ""
Looking forward for a long term solution. Any help is appreciated.
This doesn't seem to be a PkgServer issue. This repo is for the code that implements the servers that serve Julia package contents. This sounds like you got an incomplete registry tarball possibly because you interrupted the download.
This doesn't seem to be a PkgServer issue. This repo is for the code that implements the servers that serve Julia package contents. This sounds like you got an incomplete registry tarball possibly because you interrupted the download.
Thank you for clarifying. It would help me a lot if you could you recommend something to do to resolve it.
What you did fixed it. You could delete the partial registry file which is probably ~/.julia/registries/General.tar.gz
. If you delete everything in that directory and unset the Pkg server variable and try again it should work.