Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump stdlib and agda version in installation guide #2027

Merged
merged 2 commits into from
Jul 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions notes/installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ Installation instructions

Note: the full story on installing Agda libraries can be found at [readthedocs](http://agda.readthedocs.io/en/latest/tools/package-system.html).

Use version v1.7.1 of the standard library with Agda 2.6.2.2, 2.6.2.1, or 2.6.2.
Use version v1.7.2 of the standard library with Agda 2.6.3.

1. Navigate to a suitable directory `$HERE` (replace appropriately) where
you would like to install the library.

2. Download the tarball of v1.7.1 of the standard library. This can either be
2. Download the tarball of v1.7.2 of the standard library. This can either be
done manually by visiting the Github repository for the library, or via the
command line as follows:
```
wget -O agda-stdlib.tar https://github.com/agda/agda-stdlib/archive/v1.7.1.tar.gz
wget -O agda-stdlib.tar https://github.com/agda/agda-stdlib/archive/v1.7.2.tar.gz
```
Note that you can replace `wget` with other popular tools such as `curl` and that
you can replace `1.7.1` with any other version of the library you desire.
you can replace `1.7.2` with any other version of the library you desire.

3. Extract the standard library from the tarball. Again this can either be
done manually or via the command line as follows:
Expand All @@ -26,7 +26,7 @@ Use version v1.7.1 of the standard library with Agda 2.6.2.2, 2.6.2.1, or 2.6.2.
4. [ OPTIONAL ] If using [cabal](https://www.haskell.org/cabal/) then run
the commands to install via cabal:
```
cd agda-stdlib-1.7.1
cd agda-stdlib-1.7.2
cabal install
```

Expand All @@ -40,7 +40,7 @@ Use version v1.7.1 of the standard library with Agda 2.6.2.2, 2.6.2.1, or 2.6.2.
6. Register the standard library with Agda's package system by adding
the following line to `$HOME/.agda/libraries`:
```
$HERE/agda-stdlib-1.7.1/standard-library.agda-lib
$HERE/agda-stdlib-1.7.2/standard-library.agda-lib
```

Now, the standard library is ready to be used either:
Expand Down