mirror of
https://github.com/HelloZeroNet/ZeroNet.git
synced 2023-12-14 04:33:03 +01:00
readme: mention distro packages; also formatting
This commit is contained in:
parent
1a3e5b7893
commit
b6ee24dcd5
1 changed files with 39 additions and 8 deletions
47
README.md
47
README.md
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue