!Mac OS X-10.15.7!ruby-2.7.1p83
Als ich anaconda3 in osx (Catalina) einfügte und ein Jupyter-Notizbuch von Anaconda-Navigator.app startete, bekam ich den folgenden Fehler auf dem Terminal und starb.
$ /****/****/anaconda3/bin/jupyter_mac.command ; exit;
Failed to execute process '/****/****/anaconda3/bin/jupyter_mac.command'. Reason:
exec: Exec format error
The file '/****/****/anaconda3/bin/jupyter_mac.command' is marked as an executable
but could not be run by the operating system.
Dies liegt daran, dass die Standard-Shell des Terminals auf Fisch eingestellt ist. Der folgende Shebang am Anfang von jupyter \ _mac.command
#!/bin/bash
Wurde hinzugefügt und gelöst.
Wahrscheinlich dasselbe mit zsh (nicht verifiziert).
Recommended Posts