Julia 语言

同时安装多个库

Pkg.add.(["IJulia", "Combinatorics", "Plots", "TaylorSeries"])

设置并行线程数

export JULIA_NUM_THREADS=4 #The number of threads Julia starts up with is controlled by an environment variable called JULIA_NUM_THREADS. Now, let's start up Julia with 4 threads:
原文地址:https://www.cnblogs.com/yaos/p/10533296.html