abishekvashok / cmatrix

Terminal based "The Matrix" like implementation
GNU General Public License v3.0
4.03k stars 420 forks source link

Installation Issue #147

Open MiChaelinzo opened 2 years ago

MiChaelinzo commented 2 years ago

Describe the bug Reinstalling of cmatrix whenever my Rasberry Pi shutdown/reboot

To Reproduce sudo apt-get install cmatrix shutdown or reboot cmatrix doesn't work sudo apt-get install cmatrix again

Expected behavior To not reinstall it whenever I shutdown or reboot my Raspberry Pi

Screenshots If applicable, add screenshots to help explain your problem.

Additional context Add any other context about the problem here.

abishekvashok commented 2 years ago

Hey, @MiChaelinzo I don't maintain the apt-get repository or build. But I do know they pull from this repository. Can you find cmatrix installed in the Pi? (It's in the /usr/local/bin by default) If so, can you check if /usr/local/bin is in your PATH. If not you might need to include it in your PATH by modifying your shell's profile. (I think it's bash in the specified RPI OS so you can put a command ~/.bashrc that updates your path) Additionally, if you don't want to include /usr/local/bin into PATH, you can build by downloading from this repo, and while running make install use the --prefix=<path_to_a_directory> to install cmatrix in <path_to_a_directory> rather than in /usr/local/bin and include the <path_to_a_directory> in to your PATH as stated above.