We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bfe617 commit 88074abCopy full SHA for 88074ab
src/AbstractMCMC.jl
@@ -50,7 +50,7 @@ end
50
function progresslogger()
51
# detect if code is running under IJulia since TerminalLogger does not work with IJulia
52
# https://github.com/JuliaLang/IJulia.jl#detecting-that-code-is-running-under-ijulia
53
- if isdefined(Main, :IJulia) && Main.IJulia.inited
+ if Sys.iswindows() || (isdefined(Main, :IJulia) && Main.IJulia.inited)
54
return ConsoleProgressMonitor.ProgressLogger()
55
else
56
return TerminalLoggers.TerminalLogger()
0 commit comments