edits; simplify caching

This commit is contained in:
jverzani
2022-06-06 11:43:19 -04:00
parent 1f377bf420
commit e36e700740
14 changed files with 344 additions and 141 deletions

View File

@@ -2,18 +2,19 @@
To run the commands in these notes, some external packages must be installed and loaded.
The `Pluto` interface does this in the background, so there is nothing to do but execute the cells that call `using` or `import`.
The `Pluto` interface does this in the background, so there is nothing
to do but execute the cells that call `using` or `import`. For `Julia`
post version `1.7`, this installation will be initiated for you when
`using` is called in the REPL terminal.
----
For other interfaces, to use the `CalculusWithJulia` package requires first that it be installed. From the command line, this would be done with
All that is needed is to install with:
For other interfaces, to use the `CalculusWithJulia` package requires first that it be installed. From the command line. This can be done with this key sequence:
```julia; eval=false
] add CalculusWithJulia
```
Using the `Pkg` package, the commands would be
Or, using the `Pkg` package, the commands would be
```julia; eval=false
import Pkg
@@ -22,6 +23,7 @@ Pkg.add("CalculusWithJulia")
Installation only needs to be done once.
----
However, for each new `Julia` session, the package must be *loaded*, as with the following command: