Update README.md

Syntax Highlighting wooh
This commit is contained in:
░̟▒̱̈́͑ͩ▓̰̣̹̝ͪ̀̔̈͠█̙͒ͨ│̺̫͚͛̐̎́͊【W̳̬̽́̆̌ȁ̧̩̥͇̄͒l͇̆̎̎̐ͥk͚̙͚͇̈́̈ͣ̍̽̓m̜̤̰͚̼̟a̝̘͎̍̎n̛̝̤͗̅̈̇͗ͨ̾ͅ】͚̝͚̤̗̮ͩ̉̏͢│̧̲͚̺͎̪̾ͮ█̞̱̙̭̈́̃͘▓̪̙̝̜̹̬▒̶̄░̵̭̫̤̦ 2015-09-23 20:09:51 +02:00 committed by ░▒▓█│【Walkman】│█▓▒░
parent 891c5cc34a
commit 5efe1b8051
1 changed files with 17 additions and 10 deletions

View File

@ -82,19 +82,26 @@ It downloads the latest version of ZeroNet then starts it automatically.
#### Debian
* `sudo apt-get update`
* `sudo apt-get install msgpack-python python-gevent`
* `wget https://github.com/HelloZeroNet/ZeroNet/archive/master.tar.gz`
* `tar xvpfz master.tar.gz`
* `cd ZeroNet-master`
* Start with `python zeronet.py`
* Open http://127.0.0.1:43110/ in your browser and enjoy! :)
```sh
sudo apt-get update
sudo apt-get install msgpack-python python-gevent
wget https://github.com/HelloZeroNet/ZeroNet/archive/master.tar.gz
tar xvpfz master.tar.gz
cd ZeroNet-master
# to start:
python zeronet.py
```
Open http://127.0.0.1:43110/ in your browser and enjoy! :)
#### Other Linux or without root access
* Check your python version using `python --version` if the returned version is not `Python 2.7.X` then try `python2` or `python2.7` command and use it from now
* `wget https://bootstrap.pypa.io/get-pip.py`
* `python get-pip.py --user gevent msgpack-python`
* Start with `python zeronet.py`
```sh
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py --user gevent msgpack-python
# to start:
python zeronet.py
```
### Mac