Julia 中好用的 package

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/mifangdebaise/article/details/83272405
  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

猜你喜欢

转载自blog.csdn.net/mifangdebaise/article/details/83272405
今日推荐