You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per discussion[^1], revert previous commit[^2] and clarify how to get
rakudobrew going The Right Way™ by updating the shim with `rehash` command.
[1] 1b3cf97#commitcomment-19334016
[2] 1b3cf97
Copy file name to clipboardExpand all lines: README.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,13 +21,24 @@ to see the documentation for method `split` in class `Str`.
21
21
22
22
## Building the HTML documentation
23
23
24
-
To build the documentation web pages, simply run
24
+
Install dependencies by running the following in the checkout directory:
25
25
26
-
$ make html
26
+
panda installdeps . # if you use panda
27
+
zef --depsonly install . # if you use zef
28
+
29
+
If you use [`rakudobrew`](https://github.com/tadzik/rakudobrew), also run the
30
+
following, to update the shims for installed executables:
31
+
32
+
rakudobrew rehash
27
33
28
-
In addition to the Perl 6 dependencies, you need to have `graphviz` installed.
34
+
In addition to the Perl 6 dependencies, you need to have `graphviz` installed, which
35
+
on Debian you can do by running
29
36
30
-
Also install Pod::To::BigPage i.e. panda install Pod::To::BigPage then copy ~/.rakudobrew/moar-nom/install/share/perl6/site/bin/pod2onepage to ~/.rakudobrew/bin/
37
+
sudo apt-get install graphviz
38
+
39
+
To build the documentation web pages, simply run
40
+
41
+
$ make html
31
42
32
43
After the pages have been generated, you can view them on your local
33
44
computer by starting the included `app.pl` program:
0 commit comments