Commit inicial: Projeto YuClusters

This commit is contained in:
Thiago Moura
2026-06-04 18:12:47 -03:00
commit 0a185c0223
28 changed files with 5093 additions and 0 deletions
@@ -0,0 +1,12 @@
#!/bin/bash
set -e
echo "=== Installing Python Libraries via Wine ==="
# Ensure pip is up to date
WINEPREFIX=$HOME/.wine wine python -m pip install --upgrade pip
# Install Flask and MetaTrader5
# The user explicitly warned to be careful with the case sensitivity of MetaTrader5!
WINEPREFIX=$HOME/.wine wine python -m pip install Flask MetaTrader5
echo "Libraries installed successfully."