Skip to content

Commit

Permalink
readme: mention distro packages; also formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
radfish committed Mar 30, 2019
1 parent 1a3e5b7 commit b6ee24d
Showing 1 changed file with 39 additions and 8 deletions.
47 changes: 39 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,46 @@ Decentralized websites using Bitcoin crypto and the BitTorrent network - https:/

## How to join

* `sudo apt-get update`
* `sudo apt-get install python3-pip`
* `wget https://github.com/HelloZeroNet/ZeroNet/archive/py3.tar.gz`
* `tar xvpfz py3.tar.gz`
* `cd ZeroNet-py3`
* Install required Python modules `sudo python3 -m pip install -r requirements.txt`
* Start with `python3 zeronet.py`
* Open http://127.0.0.1:43110/ in your browser
### Install from package for your distribution

* Arch Linux: [zeronet](https://aur.archlinux.org/zeronet.git), [zeronet-git](https://aur.archlinux.org/zeronet-git.git)
* Gentoo: [emerge repository](https://github.com/leycec/raiagent)
* FreeBSD: zeronet
* Whonix: [instructions](https://www.whonix.org/wiki/ZeroNet)

### Install from source

Fetch and extract the source:

wget https://github.com/HelloZeroNet/ZeroNet/archive/py3.tar.gz
tar xvpfz py3.tar.gz
cd ZeroNet-py3

Install Python module dependencies either:

* (Option A) into a [virtual env](https://virtualenv.readthedocs.org/en/latest/)

```
virtualenv zeronet
source zeronet/bin/activate
python -m pip install -r requirements.txt
```
* (Option B) into the system (requires root), for example, on Debian/Ubuntu:
```
sudo apt-get update
sudo apt-get install python3-pip
sudo python3 -m pip install -r requirements.txt
```
Start Zeronet:
python zeronet.py
Open the ZeroHello landing page in your browser by navigating to:
http://127.0.0.1:43110/
## Current limitations
Expand Down

0 comments on commit b6ee24d

Please sign in to comment.