Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 2.15 KB

linux.md

File metadata and controls

44 lines (34 loc) · 2.15 KB

Installing Lean and mathlib on Linux

This document explains how to get started with Lean and mathlib on a generic Linux distribution (there is a specific page for Debian and derived distribtions such as Ubuntu).

All commands below should be typed inside a terminal.

  • Lean itself doesn't depend on much infrastructure, but supporting tools needed by most users require git, curl, and python3 (on Debian and Ubuntu also python3-pip). So the first step is to get those.

  • The next step installs a small tool called elan which will handle updating Lean according to the needs of your current project (hit Enter when a question is asked). It will live in $HOME/.elan and add a line to $HOME/.profile.

    curl https://github.com/Kha/elan/master/elan-init.sh -sSf | sh
  • You will also need a code editor that has a Lean plugin. The recommended choice is Visual Studio Code. The alternative is to use Emacs, and its lean-mode.

    1. Install VS Code.
    2. Launch VS Code.
    3. Click on the extension icon (image of icon) (or (image of icon) in older versions) in the side bar on the left edge of the screen (or press ShiftCtrlX) and search for leanprover.
    4. Click "install" (In old versions of VSCode, you might need to click "reload" afterwards)
    5. Verify Lean is working, for example by saving a file test.lean and entering #eval 1+1. A green line should appear underneath #eval 1+1, and hovering the mouse over it you should see 2 displayed.
  • Then we install a small tool called leanproject that will handle updating mathlib according to the needs of your current project.

    sudo pip3 install mathlibtools

Note however that you cannot use mathlib, and in particular any imports, in the file test.lean created above.

You're not done yet!

👉 If you want to use mathlib, you should now read the instructions about creating and working on Lean projects.