diff --git a/install-cl-jupyter.py b/install-cl-jupyter.py index ba55f33..5def43c 100644 --- a/install-cl-jupyter.py +++ b/install-cl-jupyter.py @@ -202,8 +202,10 @@ def process_command_line(argv): elif config.lisp_implementation == "ccl": if not config.lisp_executable: - config.lisp_executable = 'ccl' - + if shutil.which("ccl64"): + config.lisp_executable = 'ccl64' + else: + config.lisp_executable = 'ccl' try: ccl_version_string = subprocess.check_output([config.lisp_executable, "-V"]).decode() except FileNotFoundError: