Update documentation
parent
3381fee65d
commit
96877fbf07
|
@ -7,8 +7,19 @@ Para instalar dependencias de python se usa el modulo venv (https://docs.python.
|
|||
|
||||
# Instalación rápida
|
||||
|
||||
## Ubuntu 24.04
|
||||
|
||||
## Distribuciones antiguas (18.04)
|
||||
sudo apt install python3-git python3-libarchive-c python3-termcolor bsdextrautils
|
||||
|
||||
## Distribuciones antiguas (< 24.04)
|
||||
|
||||
sudo apt install python3 python3-venv libarchive-dev
|
||||
python3 -m venv venvog
|
||||
. venvog/bin/activate
|
||||
python3 -m pip install --upgrade pip
|
||||
pip3 install -r requirements.txt
|
||||
|
||||
## Distribuciones muy antiguas (18.04, no soportado)
|
||||
|
||||
**Nota:** En 18.04, `uname` solo se encuentra en `/bin`, lo que causa un error inocuo en el log durante la creación de los repositorios:
|
||||
|
||||
|
@ -28,13 +39,6 @@ Ejecutar con:
|
|||
|
||||
python3.8 ./opengnsys_git_installer.py
|
||||
|
||||
## Distribuciones nuevas (22.04)
|
||||
|
||||
sudo apt install python3 python3-venv libarchive-dev
|
||||
python3 -m venv venvog
|
||||
. venvog/bin/activate
|
||||
python3 -m pip install --upgrade pip
|
||||
pip3 install -r requirements.txt
|
||||
|
||||
## Agregar clave de SSH si es necesario
|
||||
|
||||
|
|
Loading…
Reference in New Issue