- this is just a temporary dir to pass or share temporary files
Last active
July 26, 2020 08:57
-
-
Save mezcel/f374a42c197ba9d2d41cd1d6b95f9496 to your computer and use it in GitHub Desktop.
temp dir to pass temp files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo apt update | |
| sudo apt gnuchess | |
| sudo apt xboard | |
| ## How to run XBoard with GNU Chess as chess backend: | |
| ## xboard -fcp 'gnuchess --xboard' | |
| ## xboard -fd . -fcp './gnuchess --xboard' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ## Go board game for Debian | |
| sudo apt update | |
| function installGnuGo { | |
| ## GnuGo | |
| sudo apt install gnugo quarry | |
| } | |
| function installAlphaGo { | |
| ## Open Source AlphaGo | |
| ## Java | |
| sudo apt install default-jre | |
| sudo apt-get install default-jdk | |
| ## Go ai and ui | |
| ## https://github.com/leela-zero/leela-zero | |
| ## https://www.aghs.cc/tutorials/leela/leela.php | |
| sudo apt install leela-zero lizzie | |
| ## weight (based on human games) | |
| ## rename the .zip "network.gz" | |
| wget https://sjeng.org/zero/best_v1.txt.zip | |
| ## electron go ui | |
| git clone https://github.com/SabakiHQ/Sabaki.git | |
| } | |
| installGnuGo |
This file has been truncated, but you can view the full file.
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment