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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
Installation Instructions for Pybik 3.0
=======================================
Currently Pybik is available in the official archive for Ubuntu and Debian.
For Ubuntu the latest release is available in the Pybik Personal Package Archive (PPA)
<https://launchpad.net/~barcc/+archive/pybik>. Add `ppa:barcc/pybik` to your system's
software sources (with the Ubuntu Software-Center).
You can also do this in a terminal:
sudo add-apt-repository ppa:barcc/pybik
sudo apt-get update
sudo apt-get install pybik
If Pybik is not available for your distribution, see the following installation instructions.
Run from source archive
=======================
Please use the latest source from the official download site
<https://launchpad.net/pybik/+download>.
Requirements
------------
Please make sure you satisfy Pybik's dependencies:
* Python 3
* Qt5
For building:
* C-compiler (gcc)
* development files for Python 3
* Mesa development files
* gettext (for translations)
Build + Run
-----------
Extract the archive, switch to the created directory in a terminal and enter:
./build_local.sh
To run Pybik you can use the command in the same directory
./pybik
System-wide installation
========================
This installation method is intended primarily for packagers. Pybik comes
with a full featured `setup.py` installation script. To find out more, run:
./setup.py --help
You may need additional software
* Cython (for Python3, >= 0.17.4, to recreate files in `./csrc/`)
* rst2man from the python3-docutils package to create a manpage
VCS and Daily Builds
====================
Development happens with the Bazaar version control system.
Location: <https://code.launchpad.net/~barcc/pybik/trunk>
You can get the latest revision with:
bzr branch lp:pybik
Daily build for Ubuntu are provided in the PPA `ppa:barcc/daily-build`
<https://code.launchpad.net/~barcc/+archive/daily-build>
|