-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL.txt
More file actions
100 lines (92 loc) · 3.51 KB
/
Copy pathINSTALL.txt
File metadata and controls
100 lines (92 loc) · 3.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# PCM - Python Connection Manager (PyQt6)
# Dipendenze di sistema
# Nota: per nuove installazioni è raccomandata la versione GTK3 (../gtk3/).
# Questa versione richiede X11 o XWayland per il terminale xterm embedded.
# ===========================================================================
# Installazione automatica (raccomandato)
# ===========================================================================
#
# git clone https://github.com/buzzqw/Python_Connection_Manager.git
# cd Python_Connection_Manager/pyqt6
# bash setup.sh
#
# Lo script rileva automaticamente la distribuzione e installa tutte le
# dipendenze. Su Debian e Fedora crea un venv Python per isolare le
# dipendenze pip (evita il blocco PEP-668); su Arch e FreeBSD usa i pacchetti di sistema.
#
# Verifica senza installare:
# bash setup.sh --check
#
# Avvio dopo installazione automatica:
# ./pcm
# ===========================================================================
# Debian / Ubuntu / Linux Mint
# ===========================================================================
#
# sudo apt install \
# python3 python3-venv curl \
# openssh-client mosh \
# freerdp3-x11 tigervnc-viewer \
# xdotool wakeonlan xdg-utils \
# telnet
#
# Pacchetti Python (tramite venv):
# python3 -m venv --system-site-packages .venv
# .venv/bin/pip install "PyQt6>=6.0.0" PyQt6-WebEngine \
# "cryptography>=41.0" "paramiko>=3.0" "pyftpdlib>=1.5"
# ===========================================================================
# Arch Linux
# ===========================================================================
#
# sudo pacman -Sy --needed \
# python curl \
# openssh mosh freerdp tigervnc \
# xdotool xdg-utils wol inetutils \
# python-pyqt6 python-pyqt6-webengine \
# python-cryptography \
# python-paramiko \
# python-pyftpdlib
#
# Nessun pacchetto pip necessario: tutto gestito da pacman.
# ===========================================================================
# Fedora
# ===========================================================================
#
# sudo dnf install \
# python3 python3-devel curl \
# openssh-clients mosh freerdp tigervnc \
# xdotool xdg-utils wol \
# telnet
#
# Pacchetti Python (tramite venv):
# python3 -m venv --system-site-packages .venv
# .venv/bin/pip install "PyQt6>=6.0.0" PyQt6-WebEngine \
# "cryptography>=41.0" "paramiko>=3.0" "pyftpdlib>=1.5"
# ===========================================================================
# FreeBSD (pkg)
# ===========================================================================
#
# sudo pkg install \
# bash python3 curl \
# mosh freerdp3 tigervnc-viewer \
# xdotool wakeonlan xdg-utils \
# py311-qt6-pyqt \
# py311-qt6-webengine \
# py311-cryptography \
# py311-paramiko \
# py311-pyftpdlib
#
# Nessun pacchetto pip necessario: tutto gestito da pkg.
# ===========================================================================
# Note Wayland
# ===========================================================================
#
# Questa versione usa xterm come terminale embedded, che richiede X11 o
# XWayland. Non è possibile un uso Wayland puro.
# Per terminale nativo su Wayland usare la versione GTK3 (../gtk3/).
# ===========================================================================
# Avvio manuale
# ===========================================================================
#
# cd pyqt6/
# python3 PCM.py