1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
.. Copyright (C) 2016 taylor.fish <contact@taylor.fish>
.. This file is part of pyrcb2-docs, documentation for pyrcb2.
.. pyrcb2-docs is licensed under the GNU Lesser General Public License
as published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
.. As an additional permission under GNU GPL version 3 section 7, you
may distribute non-source forms of pyrcb2-docs without the copy of
the GNU GPL normally required by section 4, provided you include a
URL through which recipients can obtain a copy of the Corresponding
Source and the GPL at no charge.
.. pyrcb2-docs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
.. You should have received a copy of the GNU Lesser General Public License
along with pyrcb2-docs. If not, see <http://www.gnu.org/licenses/>.
.. currentmodule:: pyrcb2
.. highlight:: none
Installation
============
Install with pip::
$ pip3 install pyrcb2
Or clone `the git repository`_ and install with ``setup.py``::
$ ./setup.py install
Alternatively, you can clone the repository and install with pip::
$ pip3 install .
You will need to run the commands above as root if you're installing globally.
You can use the ``--user`` option to install to your home directory instead.
.. _the git repository: https://github.com/taylordotfish/pyrcb2/tree/stable/
|