Is IJulia meant to be working with Julia v1.0 yet?

I took the following steps to install IJulia and it works both on Julia 0.7 and 1.0 version on Win10. I am using normal installation of Python (not Conda).

  1. ENV[“PYTHON”] = specify path to ptyhon.exe
  2. ENV[“JUPYTER”] = specify path to jupyter.exe
  3. using Pkg;Pkg.add(“IJulia”);Pkg.build(“IJulia”)
  4. using IJulia

Hope it helps.