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
// Install installs Algorand development tools or node software depending on the package manager.
49
65
funcInstall() error {
66
+
ifhasConflictingUser() {
67
+
returnfmt.Errorf("Your system has a user called \"algorand\". The algorand node requires the \"algorand\" username for internal usage. Rename or remove the algorand user to continue.")
68
+
}
69
+
50
70
log.Info("Installing Algod on Linux")
71
+
51
72
// Based off of https://developer.algorand.org/docs/run-a-node/setup/install/#installation-with-a-package-manager
52
73
ifsystem.CmdExists("apt-get") { // On some Debian systems we use apt-get
0 commit comments