thebookofshaders/appendix/00/README-it.md

34 lines
1.1 KiB
Markdown
Raw Normal View History

2016-08-28 18:52:22 +00:00
## Come posso consultare questo libro offline?
Diciamo che si dispone di un lungo viaggio e si desidera usarlo per imparare da soli alcuni shaders. In questo caso è possibile effettuare una copia locale di questo libro sul computer ed eseguire un server locale.
2020-08-31 07:24:09 +00:00
Per questo è necessario solo Python 3 e un client git. Sui computer MacOS e Raspberry Pi, Python è installato di default, ma è comunque necessario installare un client git. Per fare ciò:
2016-08-28 18:52:22 +00:00
Su **MacOSX** siate sicuri di avere installato [homebrew](http://brew.sh/) e quindi sul terminale fate:
```bash
brew update
brew upgrade
brew install git
2016-08-28 18:52:22 +00:00
```
2016-10-27 19:10:27 +00:00
Su **Raspberry Pi** è necessario fare:
2016-08-28 18:52:22 +00:00
```bash
sudo apt-get update
sudo apt-get upgrade
2016-12-13 21:20:19 +00:00
sudo apt-get install git-core glslviewer
2016-08-28 18:52:22 +00:00
```
Una volta che avete installato tutto, non vi resta che fare:
```bash
cd ~
git clone --recursive https://github.com/patriciogonzalezvivo/thebookofshaders.git
cd thebookofshaders
git submodule foreach git submodule init && git submodule update
2016-08-28 18:52:22 +00:00
php -S localhost:8000
```
Quindi aprite il browser e inserite [```http://localhost:8000/```](http://localhost:8000/)