Supybot: same as elsewhere (upgrade with pip)

This commit is contained in:
Mikaela Suomalainen 2014-06-30 15:33:14 +03:00
parent e6fe451d4a
commit f974cb8b83
2 changed files with 10 additions and 10 deletions

View File

@ -78,19 +78,19 @@ ga('send', 'pageview');
<p>You should install <a href="http://pip.readthedocs.org/en/latest/reference/pip_install.html">pip</a> (usually python-pip in repositories) and <a href="http://git-scm.com/">git</a>.</p>
<p>Windows users should also install <a href="http://pip.readthedocs.org/en/latest/reference/pip_install.html">pip</a> and <a href="https://msysgit.github.io/">msysgit</a> and in <a href="https://msysgit.github.io/">msysgit</a> select to run <strong>unix tools in PATH</strong>.</p>
<p>Note: pip is included with Python =&lt; 3.4! Python 3 is only supported by Limnoria.</p>
<p>For <strong>rootless installation and upgrading</strong>, please see <a href="http://supybot.aperio.fr/doc/use/install.html#local-installation">Limnoria's documentation.</a> which you should be able to modify to install stock Supybot or gribble with the information below.</p>
<p>For <strong>rootless installation</strong>, please see <a href="http://supybot.aperio.fr/doc/use/install.html#local-installation">Limnoria's documentation.</a> which you should be able to modify to install stock Supybot or gribble with the information below.</p>
<p>If you don't have sudo, please simply remove it from beginnings of lines and run the commands as root or Administrator.</p>
<h3 id="supybot">Supybot</h3>
<p><strong>Not recommended as it's not actively developed.</strong></p>
<pre><code>sudo pip install git+https://github.com/supybot/supybot.git</code></pre>
<pre><code>sudo pip install git+https://github.com/supybot/supybot.git --upgrade</code></pre>
<h3 id="gribble">gribble</h3>
<p>Less actively developed than Limnoria and doesn't support Python 3.</p>
<pre><code>sudo pip install git+https://github.com/nanotube/supybot_fixes.git</code></pre>
<pre><code>sudo pip install git+https://github.com/nanotube/supybot_fixes.git --upgrade</code></pre>
<h3 id="limnoria">Limnoria</h3>
<p>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.</p>
<p>The first command installs requirements of Limnoria and the second Limnoria itself. Only Limnoria has requirements.txt file at the moment.</p>
<pre><code>sudo pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt
sudo pip install git+https://github.com/ProgVal/Limnoria.git@master</code></pre>
<pre><code>sudo pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt --upgrade
sudo pip install git+https://github.com/ProgVal/Limnoria.git@master --upgrade</code></pre>
<hr/>
<a href="https://github.com/Mkaysi/Limnoria/commits/gh-pages/Supybot.html">Changelog of this page.</a>
<hr/>

View File

@ -157,7 +157,7 @@ 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 and upgrading**, please see
For **rootless installation**, please see
[Limnoria's documentation.](http://supybot.aperio.fr/doc/use/install.html#local-installation) which you should be able to modify to install stock
Supybot or gribble with the information below.
@ -173,7 +173,7 @@ and run the commands as root or Administrator.
**Not recommended as it's not actively developed.**
```
sudo pip install git+https://github.com/supybot/supybot.git
sudo pip install git+https://github.com/supybot/supybot.git --upgrade
```
### gribble
@ -181,7 +181,7 @@ sudo pip install git+https://github.com/supybot/supybot.git
Less actively developed than Limnoria and doesn't support Python 3.
```
sudo pip install git+https://github.com/nanotube/supybot_fixes.git
sudo pip install git+https://github.com/nanotube/supybot_fixes.git --upgrade
```
### Limnoria
@ -194,8 +194,8 @@ The first command installs requirements of Limnoria and the second
Limnoria itself. Only Limnoria has requirements.txt file at the moment.
```
sudo pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt
sudo pip install git+https://github.com/ProgVal/Limnoria.git@master
sudo pip install -r https://raw.githubusercontent.com/ProgVal/Limnoria/master/requirements.txt --upgrade
sudo pip install git+https://github.com/ProgVal/Limnoria.git@master --upgrade
```
<hr/>