From be86d72778165ea3dfe40d101dac30f7779c7ca9 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sun, 12 Oct 2014 21:59:58 +0300 Subject: [PATCH] Supybot: fix language & encourage Python3 it looks like there was broken search & replace --- Supybot.html | 17 +++++++++++------ Supybot.html.md | 26 +++++++++++++++++++------- 2 files changed, 30 insertions(+), 13 deletions(-) diff --git a/Supybot.html b/Supybot.html index c211da59e..b70b55984 100644 --- a/Supybot.html +++ b/Supybot.html @@ -1,7 +1,7 @@ - + Security issues of Supybot @@ -75,9 +75,9 @@ ga('send', 'pageview');

Join Supybot channels on freenode!

Installing forks

For all of them.

-

You should install python -m pip (usually python-python -m pip in repositories) and git.

-

Windows users should also install python -m pip and msysgit and in msysgit select to run unix tools in PATH.

-

Note: python -m pip is included with Python =< 3.4! Python 3 is only supported by Limnoria.

+

You should install pip (usually python-pip and python3-pip in repositories) and git.

+

Windows users should also install pip and msysgit and in msysgit select to run unix tools in PATH.

+

Note: pip is included with Python =< 3.4! Python 3 is only supported by Limnoria.

For rootless installation, please see Limnoria's documentation. which you should be able to modify to install stock Supybot or gribble with the information below.

If you don't have sudo, please simply remove it from beginnings of lines and run the commands as root or Administrator.

Supybot

@@ -89,8 +89,13 @@ ga('send', 'pageview');

Limnoria

At the time of writing, the most active Supybot fork which includes embedded HTTPd for plugins needing it, supports other languages than English and also runs with Python 3.

The first command installs requirements of Limnoria and the second Limnoria itself. Only Limnoria has requirements.txt file at the moment.

-
sudo python -m pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt --upgrade
-sudo python -m pip install git+https://github.com/ProgVal/Limnoria.git@master --upgrade
+
sudo python3 -m pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt --upgrade
+sudo python3 -m pip install git+https://github.com/ProgVal/Limnoria.git@master --upgrade
+

python3 -m pip

+

If you don't have pip for Python3 you can

+
curl -LO https://bootstrap.pypa.io/get-pip.py
+sudo python3 get-pip.py
+

if curl -LO doesn't work, try replacing it with wget.


Changelog of this page.
diff --git a/Supybot.html.md b/Supybot.html.md index bd54d3cce..00711b2e3 100644 --- a/Supybot.html.md +++ b/Supybot.html.md @@ -3,7 +3,7 @@ - + Security issues of Supybot @@ -149,12 +149,13 @@ Your current botname.conf is **100% compatible with forks**. ### For all of them. -You should install [python -m pip] (usually python-python -m pip in repositories) and [git]. +You should install [pip] (usually python-pip and python3-pip in +repositories) and [git]. -Windows users should also install [python -m pip] and [msysgit] and in [msysgit] +Windows users should also install [pip] and [msysgit] and in [msysgit] select to run **unix tools in PATH**. -Note: python -m pip is included with Python =< 3.4! Python 3 is only supported by +Note: pip is included with Python =< 3.4! Python 3 is only supported by Limnoria. For **rootless installation**, please see @@ -165,7 +166,7 @@ If you don't have sudo, please simply remove it from beginnings of lines and run the commands as root or Administrator. [git]:http://git-scm.com/ -[python -m pip]:http://python -m pip.readthedocs.org/en/latest/reference/python -m pip_install.html +[pip]:http://pip.readthedocs.org/en/latest/reference/pythonpip_install.html [msysgit]:https://msysgit.github.io/ ### Supybot @@ -194,10 +195,21 @@ The first command installs requirements of Limnoria and the second Limnoria itself. Only Limnoria has requirements.txt file at the moment. ``` -sudo python -m pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt --upgrade -sudo python -m pip install git+https://github.com/ProgVal/Limnoria.git@master --upgrade +sudo python3 -m pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt --upgrade +sudo python3 -m pip install git+https://github.com/ProgVal/Limnoria.git@master --upgrade ``` +#### python3 -m pip + +If you don't have pip for Python3 you can + +``` +curl -LO https://bootstrap.pypa.io/get-pip.py +sudo python3 get-pip.py +``` + +if `curl -LO` doesn't work, try replacing it with `wget`. +
[Changelog of this page.](https://github.com/Mkaysi/Limnoria/commits/gh-pages/Supybot.html)