Teaching material for the Industrial Informatics course, last year B.S. in Electronic Engineering at the University of Málaga
Developed by Juan M. Gandarias
If you want to create your own website, you need to do the following:
- Clone/fork the repo
- Install mkdocs and the required plugins
pip install mkdocs
pip install mkdocs-material
pip install mkdocs-awesome-pages-plugin
pip install mkdocs-git-revision-date-localized-plugin
pip install mkdocs-redirects
pip install mkdocs-video
Warning
If you want to install it in WSL, you'll probably receive a WARNING displaying that the directory YOUR_USER_DIRECTORY/.local/bin
is not included in the PATH.
If this happen, you won't be able to run mkdocs serve to see the changes locally. To solve that, you need to modify your .bashrc
file as follows
cd ~/
sudo gedit .bashrc
Add the following line to the end of the file:
export PATH="YOUR_USER_DIRECTORY/.local/bin:$PATH"
- See the changes locally
mkdocs serve