We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 026676d commit 97464a7Copy full SHA for 97464a7
1 file changed
bin/install_controlplots
@@ -114,8 +114,10 @@ println("matplotlib and pyqt installed in CondaPkg environment.")
114
}
115
116
_verify_controlplots() {
117
+ local _cpkg_backend="${1:-}"
118
echo "Verifying ControlPlots can be loaded..."
119
if env -u LD_PRELOAD -u LD_LIBRARY_PATH \
120
+ ${_cpkg_backend:+JULIA_CONDAPKG_BACKEND="$_cpkg_backend"} \
121
julia --project=examples -e '
122
using ControlPlots
123
println("ControlPlots loaded successfully.")
@@ -242,7 +244,7 @@ if [[ "$_backend" == "system" ]]; then
242
244
echo "Written to $_prefs_file."
243
245
246
_set_mplbackend_qtagg
- _verify_controlplots
247
+ _verify_controlplots "Null"
248
249
echo ""
250
echo "Done. ControlPlots will use the system Python (PythonCall) matplotlib with the Qt (qtagg) backend."
0 commit comments