Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Julia: how to wipe julia

Tags:

julia

How do I completely wipe (remove) Julia from my system?

like image 529
user2270337 Avatar asked Nov 29 '22 08:11

user2270337


1 Answers

Unless you've made changes to the code in packages, you can delete the whole .julia directory when you get into trouble. Either via a file manager, or (on a Unix system) via the command line,

rm -rf ~/.julia
like image 160
tholy Avatar answered Nov 30 '22 22:11

tholy