Julia 中好用的 package

  1. 刷新缓存的,不用每次重启 Julia:Revise. 一般的用户,只要在 .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 tuples: Introducing Julia/Arrays and tuples
  3. Julia 各种 plots Plots.jl
  4. Julia 符号计算 SymEngine.jl

你可能感兴趣的:(Julia)