- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想运行pysc2的代理,但我的星际争霸II没有安装在C:/Program Files(x86)/StarCraftⅡ(pysc2使用的默认SC2PATH
,我的操作系统是Windows10)。
如何更改pysc2的SC2PATH?
官方指南(https://github.com/deepmind/pysc2#run-an-agent)告诉我使用--helpfull
,但我不知道哪个有帮助。以下是我得到的。
H:\Python>python -m pysc2.bin.agent --helpfull
Run an agent.
flags:
H:\Python\lib\site-packages\pysc2\bin\agent.py:
--agent: Which agent to run
(default: 'pysc2.agents.random_agent.RandomAgent')
--agent_race: <R|P|T|Z>: Agent's race.
--bot_race: <R|P|T|Z>: Bot's race.
--difficulty: <1|2|3|4|5|6|7|8|9|A>: Bot's strength.
--game_steps_per_episode: Game steps per episode.
(default: '0')
(an integer)
--map: Name of a map to use.
--max_agent_steps: Total agent steps.
(default: '2500')
(an integer)
--minimap_resolution: Resolution for minimap feature layers.
(default: '64')
(an integer)
--parallel: How many instances to run in parallel.
(default: '1')
(an integer)
--[no]profile: Whether to turn on code profiling.
(default: 'false')
--[no]render: Whether to render with pygame.
(default: 'true')
--[no]save_replay: Whether to save a replay at the end.
(default: 'true')
--screen_resolution: Resolution for screen feature layers.
(default: '84')
(an integer)
--step_mul: Game steps per agent step.
(default: '8')
(an integer)
--[no]trace: Whether to trace the code execution.
(default: 'false')
absl.app:
-?,--[no]help: show this help
(default: 'false')
--[no]helpfull: show full help
(default: 'false')
--[no]helpshort: show this help
(default: 'false')
--[no]helpxml: like --helpfull, but generates XML output
(default: 'false')
--[no]only_check_args: Set to true to validate args and exit.
(default: 'false')
--[no]pdb_post_mortem: Set to true to handle uncaught exceptions with PDB post
mortem.
(default: 'false')
--profile_file: Dump profile information to a file (for python -m pstats).
Implies --run_with_profiling.
--[no]run_with_pdb: Set to true for PDB debug mode
(default: 'false')
--[no]run_with_profiling: Set to true for profiling the script. Execution will
be slower, and the output format might change over time.
(default: 'false')
--[no]use_cprofile_for_profiling: Use cProfile instead of the profile module
for profiling. This has no effect unless --run_with_profiling is set.
(default: 'true')
absl.logging:
--[no]alsologtostderr: also log to stderr?
(default: 'false')
--log_dir: directory to write logfiles into
(default: '')
--[no]logtostderr: Should only log to stderr?
(default: 'false')
--[no]showprefixforinfo: If False, do not prepend prefix to info messages when
it's logged to stderr, --verbosity is set to INFO level, and python logging
is used.
(default: 'true')
--stderrthreshold: log messages at this level, or more severe, to stderr in
addition to the logfile. Possible values are 'debug', 'info', 'warning',
'error', and 'fatal'. Obsoletes --alsologtostderr. Using --alsologtostderr
cancels the effect of this flag. Please also note that this flag is subject
to --verbosity and requires logfile not be stderr.
(default: 'fatal')
-v,--verbosity: Logging verbosity level. Messages logged at this level or
lower will be included. Set to 1 for debug logging. If the flag was not set
or supplied, the value will be changed from the default of -1 (warning) to 0
(info) after flags are parsed.
(default: '-1')
(an integer)
pysc2.lib.protocol:
--sc2_verbose_protocol: Print the communication packets with SC2. 0 disables.
-1 means all. >0 will print that many lines per packet. 20 is a good
starting value.
(default: '0')
(an integer)
pysc2.lib.sc_process:
--[no]sc2_verbose: Enable SC2 verbose logging.
(default: 'false')
pysc2.run_configs:
--sc2_run_config: Which run_config to use to spawn the binary.
pysc2.run_configs.platforms:
--sc2_version: <3.16.1|3.17.0|3.17.1|3.17.2|3.18.0|3.19.0>: Which version of
the game to use.
absl.flags:
--flagfile: Insert flag definitions from the given file into the command line.
(default: '')
--undefok: comma-separated list of flag names that it is okay to specify on
the command line even if the program does not define a flag with that name.
IMPORTANT: flags in this list that have arguments MUST use the --flag=value
format.
(default: '')
最佳答案
我已经解决了这个问题,如果你遇到同样的情况我会告诉你怎么做。
找到安装 python 的文件夹。在~/Lib/site-packages/
中,有一个名为pysc2
的文件夹,它是支持该程序的包。
在~/pysc2/run_configs/platforms.py
中,将C:/Program Files(x86)/StarCraftⅡ更改为你的sc2位置。
请记住通过评论记录您所做的更改,以防出现错误。
关于python - 如何设置pysc2的SC2PATH,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48255914/
我是 Spark 的新手。有人可以清除我的疑问吗: 让我们假设下面是我的代码: a = sc.textFile(filename) b = a.filter(lambda x: len(x)>0 an
问题 每行输入都将包含一个字符串,后跟一个整数。每个字符串最多包含 10 个字母字符,每个整数都在 0 到 999 的范围内 输出代码 在输出的每一行中应该有两列:第一列包含字符串,并使用 15 个字
我希望从不同供应商、不同用途、不同 APDU 的一堆智能卡中读取一些基本信息。例如:国家身份识别智能卡、EMV(支付)、手机SIM、javacard等... 我编写了一个 Java 应用程序。让我将
我有一组我想读入 RDD 的日志文件。 这些日志文件都是压缩的 gzip 文件,文件名是 日期盖章。 我一直在用sc.wholeTextFiles()读入文件,似乎我遇到了 Java 堆内存问题。为了
我使用以下命令创建服务:sc create MyService binpath= "C:\Path\MyDriver.sys" 返回的消息是:[SC] CreateService SUCCESS,但是
我使用 Spring mvc,我的问题是关于 sendError方法来自 HttpServletResponse . 有人可以告诉我哪个最好: @RequestMapping(method = Req
class superClass {} class subClass extends superClass{} public class test { public static void m
我在ConcurrentHashMap中阅读了addCount函数的源代码, 但我不知道什么时候可以实现( sc == rs + 1 || sc == rs + MAX_RESIZERS)条件。 为什
我正在尝试使用 Sproutcore 呈现 UI,其中我有一个列表列表。有一个垂直的数据列表,其中每个关联的项目都有自己的项目列表。我已经根据我对 Sproutcore 的了解设置了我认为合适的模型。
当我通过 http://software.intel.com/en-us/android 安装 Intelhaxm 时并且我成功安装了,但是当我尝试使用管理员在命令提示符下验证 Intelhaxm 是
我试图在我的 MVC - Sitecore - 7.1 中的 v4.0.30319 项目中使用 Glass Mapper。 以下是我安装的 Glass Mapper 版本 Glass Mapper 版
在我通过取消注释文件中的以下行来更改 svnserve.conf 之后,我正在尝试使用 cmd 创建一个 svnserver, anon-access = read auth-access = wri
有没有办法让 java 使用 javax.smartcardio.TerminalFactory 识别我的 NFC 读卡器? 我正在使用 Ubuntu 13.04 并使用 pcsc_scan 我能够读
我正在使用 sc.exe 命令来安装 C# windows 服务。 C:Windows\System32> sc.exe Create "TestService1" binPath= "C:\Prog
sc-bytes 代表什么?每一个关于 sc-bytes 的讨论和博客都声明它代表从服务器到客户端的字节。 想知道sc-bytes是否代表总响应字节数, 例如,。当我们访问任何 URL 时,它是否包含
topLeftView: SC.ScrollView.design({ backgroundColor: "#DADFE6", childViews: 'labLabel labMem
我想将一些已解析的 JSON 数据从我的 Controller 推送到 SC.SourceListView (Sproutcore Showcase) .我使用 SC.TreeController并将
您对此有什么解决方案吗? 我想得到 SC.SceneView从下到上过渡,而不是从左到右或从右到左。 Doc在这里并没有说太多,但是由于原始转换必须在某个地方,也许我可以为此创建其方法的原型(prot
我正在基于SproutCore 1.8的项目中。我的应用程序必须在复杂的表格 View 中显示大量数据。实际上,表格 View 将成为应用程序界面的核心元素之一。另外,我可能需要大纲/树 View ,
我正在尝试在SproutCore应用程序中按部门显示联系人列表,并尝试将SC.ListView嵌套在另一个SC.ListView中无济于事。 我可以use SC.GridView to assist,
我是一名优秀的程序员,十分优秀!