Skip to content

Commit

Permalink
fix markdown? no benchmark for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-petersen committed Feb 20, 2024
1 parent 55664f6 commit a6e8e9c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

name: Benchmark
on:
push:

jobs:
Benchmark:
Expand Down
10 changes: 7 additions & 3 deletions docs/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ To invoke Julia in the Terminal, you need to make sure that the `julia` command-
See [here](https://julialang.org/downloads/platform/#optional_add_julia_to_path) for detailed instructions.

Once Julia installed, obtain the `FiniteHilbertTransform.jl` library and compile it by running:
```
julia -e 'using Pkg; Pkg.add(url="https://github.com/JuliaStellarDynamics/FiniteHilbertTransform.jl.git")'
```

```
julia -e 'using Pkg; Pkg.add(url="https://github.com/JuliaStellarDynamics/FiniteHilbertTransform.jl.git")'
```

The library is also easy to uninstall: remove the package from the environment by running

```
julia -e 'using Pkg; Pkg.rm("FiniteHilbertTransform");'
```
Expand All @@ -22,13 +24,15 @@ By default, packages are added to the default environment at ~/.julia/environmen
## From source

Alternately, you may clone the repository wherever you want and create a local environment (or project) by running:

```
$ git clone https://github.com/JuliaStellarDynamics/FiniteHilbertTransform.jl.git
$ cd FiniteHilbertTransform.jl
$ julia --project=. -e 'using Pkg; Pkg.precompile()'
```

Note: If you are using a new Julia interpreter, you might need to download additional packages. Use the following command:

```julia
using(Pkg)
Pkg.instantiate()
Expand Down

0 comments on commit a6e8e9c

Please sign in to comment.