1. 程式人生 > >Julia 中好用的 package

Julia 中好用的 package

  1. 重新整理快取的,不用每次重啟 JuliaRevise. 一般的使用者,只要在 .julia/config/startup.jl (如果沒有資料夾及相應的檔案,自己新建即可)

Using Revise by default
If you like Revise, you can ensure that every Julia session uses it by adding the following to your .julia/config/startup.jl file:

atreplinit() do repl
	try
		@eval using Revise
		@async Revise.wait_steal_repl_backend()
	catch
	end
end
  1. REPL 下的 debug:Rebugger
  2. 介紹 Julia Arrays and tuplesIntroducing Julia/Arrays and tuples
  3. Julia 各種 plots Plots.jl
  4. Julia 符號計算 SymEngine.jl