Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 1.07 KB

Problems encountered and solved.md

File metadata and controls

31 lines (25 loc) · 1.07 KB

1. Installing IJulia with existingnbextensions plotly com jupyter notebook.

Setting path of jupyter after installing through Pkg.add.

Description: I accidentaly set wrong path of jupyter to ENV["JUPYTER"] variable before installing IJulia through Pkg.add I even tried changing path and doing Pkg.build("IJulia") which didn't worked

Solution: After changing path and calling build just restart julia and it then open notebook() it should work

2. Using plotlyjs with jupyter notebook:

Description: Using plotlyjs can be a little tricky you have to install certain things in order to make it work.

Solution: 1. Install and build ORCA:

using Pkg
Pkg.add("ORCA")
Pkg.build("ORCA")
  1. Install and build WebIO:
Pkg.add("WebIO")
Pkg.build("WebIO")
  1. Install plotlyjs
Pkg.add("plotlyjs")
  1. Add plotly extension to jupyter notebook: