lean - Lean4 good way to solve `imports are out of date` - Stack Overflow
I created a project following the official document. But if I write
import Mathlib
In my_project/Basic.lean
, I get a warning: Imports are out of date and must be rebuilt; use the "Restart File" command in your editor
in vscode.
It does fix the warning if I click "Restart File" and wait for a century. What exactly is happening after clicking "Restart File"? What does Imports are out of date
mean? Does it mean I'm not using the newest version or something else?
Is there any way to avoid waiting a century to rebuild the package?
I created a project following the official document. But if I write
import Mathlib
In my_project/Basic.lean
, I get a warning: Imports are out of date and must be rebuilt; use the "Restart File" command in your editor
in vscode.
It does fix the warning if I click "Restart File" and wait for a century. What exactly is happening after clicking "Restart File"? What does Imports are out of date
mean? Does it mean I'm not using the newest version or something else?
Is there any way to avoid waiting a century to rebuild the package?
Share Improve this question asked yesterday SSSSSS 513 bronze badges1 Answer
Reset to default 0Run lake exe cache get
on the command line to download pre-compiled olean
files for Mathilb.
(You can also do this without the command line in VSCode: Click the "forall" icon, then "Project actions", then "Fetch Mathlib Build Cache".)
- 大本营不保?美国安卓系统激活量超iOS
- Power apps - Multiple Sharepoint lists combine as collection and display in one gallery - Stack Overflow
- delphi - How to set up the properties of the ScrollBars of a TStringGrid? - Stack Overflow
- Flutter iOS UrlLauncher EXC_BAD_ACCESS - Stack Overflow
- unity game engine - After commit to git, all gameobjects loose their assets - Stack Overflow
- vb.net - Display image in picturebox at runtime - Stack Overflow
- rust - Basic bracket-lib example crashes with “unsafe precondition(s) violated: slice::from_raw_parts” - Stack Overflow
- material ui - Using ShadowDOM to address MUI 5 vs MUI 6 Compatibility Issue? - Stack Overflow
- c# - I have a time clock connected to my local network and I have a Windows server on localweb and I can't get the clock
- php - Get WooCommerce custom payment gateway values in process_payment function for Blocks checkout - Stack Overflow
- javascript - Three Contenteditable Divs that connect as one larger text box with maxChars of 274 - Stack Overflow
- swift - How to set axis order in AxisMarks in SwiftUI Chart view - Stack Overflow
- c# - Why is OntriggerEnter2D not working on my Flappy Bird game?Or if not what is the problem and can you solve it? - Stack Over
- html - django multi-level template extending - Stack Overflow
- Spring restcontroller with RequestParam String conflcting in controller - Stack Overflow
- Angular mfe with @module-federationenhanced having issue to use ngx-translate with remote apps - Stack Overflow
- Why Axios send cookies without withCredential parameter? - Stack Overflow