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
Copy file name to clipboardExpand all lines: README.md
+13-15Lines changed: 13 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,14 @@
2
2
3
3
<!-- badges: start -->
4
4
[](https://www.repostatus.org/#active)
[](https://www.contributor-covenant.org/version/3/0/code_of_conduct/)
8
8
<!-- badges: end -->
9
9
10
10
`LogoPak` is a [Flatpak](https://flatpak.org/) package for [NetLogo](https://ccl.northwestern.edu/netlogo/), a multi-agent programmable modeling environment for simulating natural and social phenomena. It simplifies the installation and management of NetLogo on Linux systems.
11
11
12
-
The package includes all four NetLogo applications (NetLogo, NetLogo 3D, HubNet Client, and Behaviorsearch) and registers desktop files, file icons, and MIME types for NetLogo model files, enabling users to use NetLogo like any other native application on their system.
12
+
The package includes all four NetLogo applications (NetLogo, NetLogo 3D, HubNet Client, and BehaviorSearch) and registers desktop files, file icons, and MIME types for NetLogo model files, enabling users to use NetLogo like any other native application on their system.
13
13
14
14

15
15
@@ -21,6 +21,8 @@ The package includes all four NetLogo applications (NetLogo, NetLogo 3D, HubNet
21
21
22
22
`LogoPak` is not yet available on [Flathub](https://flathub.org/). To install it, you can download and install the pre-built bundle or build it locally from source. This assumes you have [Flatpak](https://flatpak.org/) installed on your system.
23
23
24
+
The current version of NetLogo included in `LogoPak` is **NetLogo 7.0.3**.
25
+
24
26
### Using the Pre-built Bundle
25
27
26
28
The easiest way to install `LogoPak` is by using the pre-built Flatpak bundle:
@@ -29,13 +31,18 @@ The easiest way to install `LogoPak` is by using the pre-built Flatpak bundle:
29
31
2. Install the bundle by running the following command in your terminal:
30
32
31
33
```bash
32
-
flatpak install --user path/to/netlogo.flatpak
34
+
flatpak install --user netlogo.flatpak
33
35
```
34
36
35
-
36
37
### Building from Source
37
38
38
-
To build `LogoPak` from source, you'll need [Flatpak](https://flatpak.org/) and [`flatpak-builder`](https://docs.flatpak.org/en/latest/flatpak-builder.html) on your system. Here's how to get them using your distribution's package manager:
39
+
To build `LogoPak` from source, start by cloning this repository:
40
+
41
+
```bash
42
+
git clone https://github.com/danielvartan/logopak
43
+
```
44
+
45
+
You'll need [Flatpak](https://flatpak.org/) and [`flatpak-builder`](https://docs.flatpak.org/en/latest/flatpak-builder.html) on your system. Here's how to get them using your distribution's package manager:
39
46
40
47
```bash
41
48
# On Ubuntu/Debian
@@ -92,15 +99,6 @@ flatpak run --command=HubNetClient com.danielvartan.netlogo
92
99
flatpak run --command=Behaviorsearch com.danielvartan.netlogo
93
100
```
94
101
95
-
Or use the lowercase aliases if you prefer:
96
-
97
-
```bash
98
-
flatpak run --command=netlogo com.danielvartan.netlogo
99
-
flatpak run --command=netlogo3d com.danielvartan.netlogo
100
-
flatpak run --command=hubnetclient com.danielvartan.netlogo
101
-
flatpak run --command=behaviorsearch com.danielvartan.netlogo
102
-
```
103
-
104
102
#### Creating a Flatpak Bundle
105
103
106
104
An easier way to distribute the application is by creating a Flatpak bundle. For that, run the following commands:
0 commit comments