In my work computer I have my normal user account and a separate localadmin account. After struggling with Atom and Julia installations (mostly Atom), I managed to get them working to some extent when I installed both on the local drive (not inside user profile). But I still can’t install any packages using my normal user account, as after running for example
Pkg.add("CSV")
I get IOError: stat: permission denied (EACCES)
. After working on this issue whole day I managed to get things working, and I wrote some notes to myself: https://gist.github.com/helske/f5ed818de51553634d9d5057b489dd6a
But today, I needed another package (CSV), and installed it with localadmin, and when I tried to use it with base account I got the same access denied error as earlier. My guess is that I should delete the registery again or something, and then install everything again?..
So what would be the correct way of using Julia in this kind of situation? I’m ok with the solution where I have to install new packages using localadmin if I can then use them with my normal account.