You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a reasonable default given that compute servers are dedicated to running Julia.
The script that supervisorctl runs is: /cocalc/apps/pluto.sh
I would try editing it to specify JULIA_NUM_THREADS, then supervisorctl restart pluto
(compute-server-2) ~$ more /cocalc/apps/pluto.sh
#!/usr/bin/env bash. /cocalc/start-env.sh
set +e
which julia
if [ $?-ne 0 ];thenecho"You must install Julia"exit 1
fiecho'import Pluto'| julia 2>&1| grep -q 'not found'if [ $?-eq 0 ];thenecho"Installing Pluto"echo'using Pkg; Pkg.add("Pluto");'| julia
fiset -ev
echo'import Pluto; Pluto.run(launch_browser=false, require_secret_for_access=false, port='$PORT')'| julia
The text was updated successfully, but these errors were encountered:
This is a reasonable default given that compute servers are dedicated to running Julia.
The script that supervisorctl runs is: /cocalc/apps/pluto.sh
I would try editing it to specify JULIA_NUM_THREADS, then supervisorctl restart pluto
The text was updated successfully, but these errors were encountered: