facebook twitter hatena line email

「将棋プログラム/技巧」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(技巧インストール)
行7: 行7:
  
 
==makeでmake[1]: *** [obj/release/src/bitboard.o] Error 1となる場合==
 
==makeでmake[1]: *** [obj/release/src/bitboard.o] Error 1となる場合==
$ vi /etc/apt/sources.list
+
$ vi /etc/apt/sources.list
deb http://ftp.debian.org/debian jessie-backports main
+
deb http://ftp.debian.org/debian jessie-backports main
deb http://http.debian.net/debian jessie main
+
deb http://http.debian.net/debian jessie main
$ sudo apt-get update
+
$ sudo apt-get update
  
$ apt-get install gcc
+
$ apt-get install gcc
$ gcc -v
+
$ gcc -v
> gcc version 4.9.2 (Debian 4.9.2-10)
+
> gcc version 4.9.2 (Debian 4.9.2-10)
$ apt-get install g++
+
$ apt-get install g++
$ g++ -v
+
$ g++ -v
> gcc version 4.9.2 (Debian 4.9.2-10)
+
> gcc version 4.9.2 (Debian 4.9.2-10)
  
 
==技巧学習==
 
==技巧学習==
./bin/release --learn-progress
+
./bin/release --learn-progress
  
 
==技巧バイナリ追加==
 
==技巧バイナリ追加==
$ wget https://github.com/gikou-official/Gikou/archive/v2.0.2.tar.gz
+
$ wget https://github.com/gikou-official/Gikou/archive/v2.0.2.tar.gz
tar zxvf v2.0.2.tar.gz
+
tar zxvf v2.0.2.tar.gz
bin/releaseと同じdirへ回答したファイルを移動
+
bin/releaseと同じdirへ回答したファイルを移動
  
 
==unzipインストール==
 
==unzipインストール==
apt-get install unzip
+
apt-get install unzip
  
 
==monoインストール==
 
==monoインストール==
apt-get install -y mono-complete
+
apt-get install -y mono-complete
  
 
==将棋所インストール==
 
==将棋所インストール==
wget http://shogigui.siganus.com/shogigui/ShogiGUIv0.0.6.11.zip
+
wget http://shogigui.siganus.com/shogigui/ShogiGUIv0.0.6.11.zip
unzip ShogiGUIv0.0.6.11.zip
+
unzip ShogiGUIv0.0.6.11.zip
mono ShogiGUIv0.0.6.11/ShogiGUI.exe
+
mono ShogiGUIv0.0.6.11/ShogiGUI.exe
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeInitializationException: An exception was thrown by the type initializer for System.Windows.Forms.XplatUI ---> System.ArgumentNullException: Could not open display (X-Server required. Check you DISPLAY environment variable)
+
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeInitializationException: An exception was thrown by the type initializer for System.Windows.Forms.XplatUI ---> System.ArgumentNullException: Could not open display (X-Server required. Check you DISPLAY environment variable)
Parameter name: Display
+
Parameter name: Display
 
エラーとなる・・・。
 
エラーとなる・・・。

2017年8月3日 (木) 04:59時点における版

技巧インストール

$ git clone https://github.com/gikou-official/Gikou.git
$ make release
$ ls -ltA bin/release
> bin/release

makeでmake[1]: *** [obj/release/src/bitboard.o] Error 1となる場合

$ vi /etc/apt/sources.list
deb http://ftp.debian.org/debian jessie-backports main
deb http://http.debian.net/debian jessie main
$ sudo apt-get update
$ apt-get install gcc
$ gcc -v
> gcc version 4.9.2 (Debian 4.9.2-10)
$ apt-get install g++
$ g++ -v
> gcc version 4.9.2 (Debian 4.9.2-10)

技巧学習

./bin/release --learn-progress

技巧バイナリ追加

$ wget https://github.com/gikou-official/Gikou/archive/v2.0.2.tar.gz
tar zxvf v2.0.2.tar.gz
bin/releaseと同じdirへ回答したファイルを移動

unzipインストール

apt-get install unzip

monoインストール

apt-get install -y mono-complete

将棋所インストール

wget http://shogigui.siganus.com/shogigui/ShogiGUIv0.0.6.11.zip
unzip ShogiGUIv0.0.6.11.zip
mono ShogiGUIv0.0.6.11/ShogiGUI.exe
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeInitializationException: An exception was thrown by the type initializer for System.Windows.Forms.XplatUI ---> System.ArgumentNullException: Could not open display (X-Server required. Check you DISPLAY environment variable)
Parameter name: Display

エラーとなる・・・。