ikatago-server icon indicating copy to clipboard operation
ikatago-server copied to clipboard

server for ikatago

Results 3 ikatago-server issues
Sort by recently updated
recently updated
newest added

I had success with using iKatago to run a Katago engine on Google Colab on my local Lizzie, which is awesome (Thanks) ! However, when trying to use the same...

https://github.com/kinfkong/ikatago-resources/tree/master/dockerfiles ![image](https://user-images.githubusercontent.com/16535685/132154463-e22e1a1a-6023-46bb-8ad3-95b3100879cf.png) 从作者的库中可以看到,该程序支持cuda9.2、cuda10、cuda10.1、cuda10.2、cuda11.1等镜像,矩池云上的镜像基本上都可以满足他的要求,可以任意选用。 ## 案例:用的cuda10.2的镜像 ![image](https://user-images.githubusercontent.com/16535685/132154492-a964845d-3dc0-4f04-8a0b-1fff5e79a88b.png) ![image](https://user-images.githubusercontent.com/16535685/132154509-058b5578-b67b-4111-b9d7-49579d756827.png) ![image](https://user-images.githubusercontent.com/16535685/132154526-31e6b4b6-66c9-4d5a-829a-82ed35ec49f5.png) ## 利用脚本安装 ```bash cd ~; /bin/bash -c "$(curl -fsSL https://ikatago-resources.oss-cn-beijing.aliyuncs.com/all/install.sh)" ``` 如果报错“sh: curl: command not found”是没有curl,先安装一下。 ```bash apt-get update apt install curl...