有点像Linux里的超级菜鸟。如何在CentOS上下载扑克-eval?
默认的页面是:https://packages.qa.debian.org/p/poker-eval.html,这让我很困惑。
我也通过google:https://copr.fedorainfracloud.org/coprs/nibbler/poker-eval/找到了这个,但是我很困惑如何使用这个Copr。
编辑:我尝试使用以下方法下载:
rpm -ivh poker-eval-134.0-1.fc6.i386.rpm
rpm -ivh poker-eval-debuginfo-134.0-1.fc6.i386.rpm
rpm -ivh poker-eval-devel-134.0-1.fc6.i386.rpm但我不知道正在运行的脚本在哪里。以下是我使用find / -name "*poker*"找到的文件
/usr/include/poker-eval
/usr/include/poker-eval/poker_defs.h
/usr/include/poker-eval/poker_config.h
/usr/include/poker-eval/poker_wrapper.h
/usr/include/poker-eval/pokereval_export.h
/usr/lib/debug/usr/lib/libpoker-eval.so.1.0.0.debug
/usr/lib/libpoker-eval.so
/usr/lib/pkgconfig/poker-eval.pc
/usr/lib/libpoker-eval.so.1.0.0
/usr/lib/libpoker-eval.so.1
/usr/src/debug/poker-eval-134.0
/usr/src/debug/poker-eval-134.0/include/poker_defs.h
/usr/src/debug/poker-eval-134.0/lib/poker_wrapper.c
/usr/share/doc/poker-eval-134.0
/usr/share/doc/poker-eval-devel-134.0发布于 2016-06-21 02:05:30
看起来正式的项目页面实际上在http://gna.org/projects/pokersource/
您列出的第一个页面是debian下游项目页面。您列出的第二页似乎是用于在CentOS上进行扑克-eval的python绑定的非官方构建。
您可以尝试通过以下RPM安装:
http://download.gna.org/pokersource/poker-eval/gnulinux/fedora/f10/src/redhat/RPMS.poker-eval/
请注意,扑克-eval只是一个库,用于不同的应用程序。有关更多信息,请参见上面提到的http://pokersource.sourceforge.net或/usr/share/doc/扑克-val-134.0的内容。
或者你可以自己从源头上构建:
wget http://download.gna.org/pokersource/poker-eval/gnulinux/fedora/f10/src/redhat/SOURCES/poker-eval-134.0.tar.gztar -axvf poker-eval-134.0.tar.gzcd poker-eval-134.0./configure && make && sudo make installhttps://stackoverflow.com/questions/37934260
复制相似问题