Open RexWzh opened 3 months ago
We'll eventually update past v4.7.0
, just didn't get around it yet due to problems with the vscode-lean4 extension running in a browser.
I think your realistic options are to either downgrade GlimpseOfLean temporarily to v4.7.0
or wait until I figured out how to run the game engine in v4.8.0+
(which has to happen soon! Once it's on v4.8.0
it will simultaneously also work for all stable releases since then.)
Hi,
I'm currently working on deploying GlimpseOfLean as a Lean game and encountering difficulties with configuring the mathlib dependency within lean4game.
You can review the project's progress at this link: GlimpseToGame Project. Despite several attempts, I've yet to succeed.
First Attempt:
I tried setting the dependency in
lakefile.lean
like this:This resulted in a build error due to GlimpseOfLean needing mathlib version
4.8.0
, not4.7.0
that was obtained:Second Attempt:
I set the
leanprover/lean4:v4.8.0
inlean-toolchain
, which led to an error because the repository for GameServer couldn't find the specified revision:The latest version for
lean4game
isv4.7.0
, which conflicts with the required version.Other Attempts:
I specified the mathlib version directly in
leanfile.lean
:This modification caused a new kind of error upon updating:
Even after using the branch or commit hash, I encountered issues, possibly due to a mismatch with the
toolchain
version. Attempts to downgrade GlimpseOfLean's version also resulted in errors.I'm in need of assistance to resolve these issues with the mathlib dependency. Any help or guidance would be greatly appreciated.
Thanks in advance!