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
@@ -75,6 +75,8 @@ A python software for synchronized data management of specific force platforms s
75
75
This project is part of the [author](https://github.com/AaronPB)'s master's thesis in industrial engineering at the University of Almería
76
76
and funded by the "[Programa Operativo FEDER 2014-2020](https://www.miteco.gob.es/es/ministerio/servicios/ayudas-subvenciones/fondos_feder.html)" and the Andalusian "Consejería de Transformación Económica, Industria, Conocimiento y Universidades", under the project UAL2020-CTS-A2100.
77
77
78
+
[:fontawesome-solid-book: More information about the project](platform/index.md){ .md-button .md-button--primary }
This version was originally developed for internal use, with Python and QT.
253
213
254
-
<divmarkdown>
255
214
Install the required dependencies and clone the project into your workspace.
256
-
257
215
You can follow this steps to set it up in a few minutes.
258
216
259
217
!!! warning "Only Linux distributions are supported, preferably Ubuntu 22.04 LTS"
260
218
The project has been developed and tested in Ubuntu 22.04 LTS. Phidget does support [Windows](https://www.phidgets.com/docs/OS_-_Windows#Quick_Downloads)
261
219
and [MacOS](https://www.phidgets.com/docs/OS_-_macOS#Quick_Downloads), but Taobotics IMUs do not.
262
220
263
-
!!! tip
264
-
Do it in a virtual environment to avoid module installation issues (using `virtualenv`, for example).
An optimized and comfortable option, with the main features.
282
+
283
+
Simple to install using Docker, and with all the documentation available inside the app, ready to go!
284
+
285
+
!!! success "Available for Windows and Linux distros"
286
+
The project has been tested in Windows 11, Ubuntu 22.04 LTS and Fedora Workstation 41. It has not been tested in MacOS, but it has a high chance to also work, as it is a dockerized version.
287
+
288
+
<div class="grid cards" markdown>
289
+
290
+
- :fontawesome-brands-docker:{ .lg .middle } __Step 1: Run a new docker container__
291
+
292
+
---
293
+
294
+
Just a quick `docker run`in your docker environment and you are ready to go!
295
+
296
+
=== "From DockerHub"
297
+
298
+
``` bash
299
+
docker run -d --name example_app \
300
+
--device /dev/bus/usb \
301
+
--device /dev/ttyUSB0 \
302
+
--device /dev/ttyUSB1 \
303
+
-p 8501:8501 \
304
+
aaronrpb/force-platform-app
305
+
```
306
+
307
+
=== "From GHCR"
308
+
309
+
``` bash
310
+
docker run -d --name example_app \
311
+
--device /dev/bus/usb \
312
+
--device /dev/ttyUSB0 \
313
+
--device /dev/ttyUSB1 \
314
+
-p 8501:8501 \
315
+
ghcr.io/aaronpb/force-platform-app
316
+
```
317
+
318
+
!!! note "Add or remove arguments depending on your setup. For more information click below."
0 commit comments