INSTALL.md: remove mentionings to packages

I also removed Windows as it's outdated and would be duplicating
documentation on installing.
This commit is contained in:
Aminda Suomalainen 2015-02-04 14:53:37 +02:00
parent 2ffc8ef2a2
commit 527b2851bb
1 changed files with 0 additions and 66 deletions

View File

@ -46,8 +46,6 @@ from there.
# UNIX/Linux/BSD
If you use [Debian or Ubuntu, click here](INSTALL.md#debian). If you use [Fedora, click here.](INSTALL.md#fedora)
If you're installing Python using your distributor's packages, you may
need a python-dev or python3-dev package installed, too. If you don't have
a `/usr/lib/python2.x/distutils` directory or
@ -114,29 +112,6 @@ echo 'PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
```
## Debian
*Debian packages are automatically built nightly at 00:00Z.*
For Debian and other distributions based on it (Ubuntu, etc.), there are
pre-built packages which you can install with:
```
wget http://builds.progval.net/limnoria/debian/python2/limnoria-master-HEAD.deb
sudo dpkg -i limnoria-master-HEAD.deb
```
## Fedora
*Fedora packages are automatically built nightly at 00:00Z.*
For Fedora and other distributions using rpm (RHEL, CentOS etc.), there are
pre-built packages which you can install with:
```
yum install http://builds.progval.net/limnoria/fedora/python2/limnoria-master-HEAD.noarch.rpm
```
## Pip
To install with pip, run:
@ -172,11 +147,6 @@ and then install Limnoria normally. "python setup.py install" doesn't affect con
If you don't have the cloned Limnoria repository, clone it again using the installation instructions.
### Debian/Fedora
Run the same commands as before on the [Debian](INSTALL.md#debian) or
[Fedora](INSTALL.md#fedora) sections of this file.
### Pip
Run the first install command again, but add `--upgrade` to the
@ -194,39 +164,3 @@ rm -rf build/
rm /usr/local/bin/supybot*
rm ~/.local/bin/supybot*
```
## Windows
**Note**: If you are using an IPV6 connection, you will not be able
to run Supybot under Windows (unless Python has fixed things). Current
versions of Python for Windows are *not* built with IPV6 support. This
isn't expected to be fixed until Python 2.4, at the earliest.
Now that you have Python installed, open up a command prompt. The
easiest way to do this is to open the run dialog (Programs -> Run) and
type "cmd" (for Windows 2000/XP/2003+) or "command" (for Windows 9x). In
order to reduce the amount of typing you need to do, I suggest adding
Python's directory to your path. If you installed Python using the
default settings, you would then do the following in the command prompt
(otherwise change the path to match your settings):
```
set PATH=C:\Python2x\;%PATH%
```
You should now be able to type 'python' to start the Python
interpreter. Exit by pressing CTRL-Z and then Return. Now that that's
setup, you'll want to cd into the directory that was created when you
unzipped Supybot; I'll assume you unzipped it to `C:\Supybot` for these
instructions. From `C:\Supybot`, run
```
python setup.py install
```
This will install Supybot under `C:\Python2x\`. You will now have several new
programs installed in `C:\Python2x\Scripts\`. The two that might be of
particular interest to you as a new user are 'supybot' and 'supybot-wizard'.
The former, 'supybot', is the script to run an actual bot; the latter,
'supybot-wizard', is an in-depth wizard that provides a nice user interface for
creating a registry file for your bot.