Skip to content

Commit 3c1c35e

Browse files
authored
Actually working installation commands
Sorry for the noise. It turns out providing the url is only sufficient in the `pkg>` REPL mode. If using `using Pkg` one has to specify a `PackageSpec`
1 parent b49d26b commit 3c1c35e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
## Installation
1010
```
1111
using Pkg
12-
Pkg.add("https://github.com/chriselrod/VectorizationBase.jl")
13-
Pkg.add("https://github.com/chriselrod/SIMDPirates.jl")
14-
Pkg.add("https://github.com/chriselrod/SLEEFPirates.jl")
15-
Pkg.add("https://github.com/chriselrod/LoopVectorization.jl")
12+
Pkg.add(PackageSpec(url="https://github.com/chriselrod/VectorizationBase.jl"))
13+
Pkg.add(PackageSpec(url="https://github.com/chriselrod/SIMDPirates.jl"))
14+
Pkg.add(PackageSpec(url="https://github.com/chriselrod/SLEEFPirates.jl"))
15+
Pkg.add(PackageSpec(url="https://github.com/chriselrod/LoopVectorization.jl"))
1616
```

0 commit comments

Comments
 (0)