Skip to content

Commit 768f8aa

Browse files
committed
add installation instructions to README
1 parent ece4283 commit 768f8aa

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@
55

66
Save and load network parameters in the Touchstone® file format. Touchstone® is a registered trademark of Agilent Technologies, Inc.
77

8+
# Installation:
9+
10+
To install the latest release of the package, install Julia using [Juliaup](https://github.com/JuliaLang/juliaup), start Julia, and enter the following command:
11+
```
12+
using Pkg
13+
Pkg.add("Touchstone")
14+
```
15+
16+
To install the development version, start Julia and enter the command:
17+
```
18+
using Pkg
19+
Pkg.add(name="Touchstone",rev="main")
20+
```
21+
22+
If you get errors when running the examples, please try installing the latest version of Julia and updating to the latest version of Touchstone®.jl by running:
23+
```
24+
Pkg.update()
25+
```
26+
27+
Then check that you are running the latest version of the package with:
28+
```
29+
Pkg.status()
30+
```
31+
832
# Examples:
933
## Load and save a Touchstone file
1034
Version 1

0 commit comments

Comments
 (0)