Skip to content

Commit d1e1539

Browse files
milesfrainthomashoneymantriallax
authored
Explicitly install all dependencies in GS guide (#384)
* Explicitly install all dependencies in GS guide Spago 0.20.0 requires that direct dependencies are explicitly installed. Previously, `foldable-traversable` was installed via `lists` as a transitive dependency. Fixes #383 * Update guides/Getting-Started.md Co-authored-by: Mohammed Anas <[email protected]> Co-authored-by: Thomas Honeyman <[email protected]> Co-authored-by: Mohammed Anas <[email protected]>
1 parent a98b5a5 commit d1e1539

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

guides/Getting-Started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ If everything was built successfully, and the tests ran without problems, then t
5858

5959
### Installing Dependencies
6060

61-
Dependencies can be installed using Spago. We will be using the `lists` library shortly, so install it now:
61+
Dependencies can be installed using Spago. We will be using the `lists` and `foldable-traversable` libraries shortly, so install those now:
6262

63-
spago install lists
63+
spago install lists foldable-traversable
6464

65-
The `lists` library sources should now be available in the `.spago/lists/{version}/` subdirectory, and will be included when you compile your project.
65+
The `lists` and `foldable-traversable` library sources should now be available in the `.spago/lists/{version}/` and `.spago/foldable-traversable/{version}/` subdirectories respectively, and will be included when you compile your project.
6666

6767
### Working in PSCI
6868

0 commit comments

Comments
 (0)