MkDocs requires a recent version of Python and the Python package manager, pip, to be installed on your system.
You can check if you already have these installed from the command line:
$ python --version
Python 3.8.2
$ pip --version
pip 20.0.2 from /usr/local/lib/python3.8/site-packages/pip (python 3.8)
If you're using a recent version of Python, the Python package manager, pip, is most likely installed by default. However, you may need to upgrade pip to the lasted version:
$ pip install --upgrade pip
If you need to install pip for the first time, download get-pip.py
. Then run the following command to install it:
$ python get-pip.py
Install the mkdocs package using pip. To install MkDocs, run the following command from the command line:
$ pip install mkdocs
You should now have the mkdocs command installed on your system.
Run mkdocs --version
to check that everything worked okay.
$ mkdocs --version
mkdocs, version 1.2.0 from /usr/local/lib/python3.8/site-packages/mkdocs (Python 3.8)
-
Clonate el repo:
SSH:
git@github.com:sergio-gonzalez-sainz/apuntes-kodemia.git
-
Crea una carpeta en tu equipo. Entra a la carpeta en tu terminal.
2.2 Posicionado en la carpeta que creaste (en tu terminal), copia lo siguiente:
git clone git@github.com:sergio-gonzalez-sainz/apuntes-kodemia.git
-
Crea una rama:
git branch nombreDeTuRama
-
Cambiate a tu rama:
git switch nombreDeTuRama
Puede que si tienes una versión de git menor a 2.25.0 (para revisar la versión utiliza
git --version
) no reconozca elswitch
, para ese caso puedes usar:git checkout nombreDeTuRama
-
Para visualizar el sitio debes levantar un pequeño servicio con el siguiente comando:
mkdocs serve
Te debe levantar el sitio en
http://127.0.0.1:8000/
.Para este punto ya puedes empezar a editar la documentación en tu editor de texto favorito. Estaría chido que ingresaras a los siguientes sitios:
-
Cuando termines se hacer tu aportación, guarda tus cambios y en terminal realiza un push:
git push --set-upstream origin nombreDeTuRama
-
Ve a GitHub y crea un Pullrequest