Skip to content

Latest commit

 

History

History
62 lines (44 loc) · 2.15 KB

File metadata and controls

62 lines (44 loc) · 2.15 KB

Installing ZeroNet

Windows

Bundle package (all included)

It will download the latest version of ZeroNet and start it automatically.

Alternative method for Windows (separated python install)

Linux

Debian

  • sudo apt-get update
  • sudo apt-get install msgpack-python python-gevent python-dnspython
  • 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! :)

Other Distro 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 dnspython
  • wget https://codeload.github.com/HelloZeroNet/ZeroNet/tar.gz/master
  • tar xvpfz master
  • Start with python zeronet.py

Mac

  • Install brew
  • brew install python
  • pip install gevent msgpack-python dnspython
  • Download, Unpack, run python zeronet.py

Vagrant

  • vagrant up
  • Access VM with vagrant ssh
  • cd /vagrant
  • Run python zeronet.py --ui_ip 0.0.0.0
  • Open http://127.0.0.1:43110/ in your browser

Docker