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
In JuliaLang/IJulia.jl#309, there was a failure that seems to have been caused by the HOME environment variable not being defined (when Julia is launched by IPython in a virtualenv), although we are still trying to pin down the problem.
It occurred to me that relying on this environment variable for the homedir() function might not be completely robust.
On Unix, we could instead call getpwuid(getuid())->pw_dir
In JuliaLang/IJulia.jl#309, there was a failure that seems to have been caused by the
HOME
environment variable not being defined (when Julia is launched by IPython in a virtualenv), although we are still trying to pin down the problem.It occurred to me that relying on this environment variable for the
homedir()
function might not be completely robust.getpwuid(getuid())->pw_dir
FOLDERID_Profile
option.We would probably have to write a helper routine in C to access these reliably (e.g. to get
struct passwd
frompwd.h
).The text was updated successfully, but these errors were encountered: