toxygen/docs/install.md

46 lines
2.3 KiB
Markdown
Raw Normal View History

2016-03-31 22:11:42 +02:00
# How to install Toxygen
2016-03-16 17:06:15 +01:00
2016-05-30 21:26:07 +02:00
## Use precompiled binary:
[Check our releases page](https://github.com/xveduk/toxygen/releases)
2016-03-31 22:11:42 +02:00
## From source code (recommended for developers)
### Windows
2016-06-23 11:46:48 +02:00
1. [Download and install latest Python 3.4](https://www.python.org/downloads/windows/)
2016-05-30 21:26:07 +02:00
2. [Install PySide](https://pypi.python.org/pypi/PySide/1.2.4) (recommended) or [PyQt4](https://riverbankcomputing.com/software/pyqt/download)
2016-07-04 11:45:51 +02:00
3. Install PyAudio: ``pip3.4 install pyaudio``
4. Install PySocks: ``pip3.4 install PySocks``
5. [Download toxygen](https://github.com/xveduk/toxygen/archive/master.zip)
6. Unpack archive
7. Download latest libtox.dll build, download latest libsodium.a build, put it into \src\libs\
8. Run \src\main.py
2016-03-31 22:11:42 +02:00
2016-04-30 12:06:07 +02:00
[libtox.dll for 32-bit Python](https://build.tox.chat/view/libtoxcore/job/libtoxcore_build_windows_x86_shared_release/lastSuccessfulBuild/artifact/libtoxcore_build_windows_x86_shared_release.zip)
[libtox.dll for 64-bit Python](https://build.tox.chat/view/libtoxcore/job/libtoxcore_build_windows_x86-64_shared_release/lastSuccessfulBuild/artifact/libtoxcore_build_windows_x86-64_shared_release.zip)
[libsodium.a for 32-bit Python](https://build.tox.chat/view/libsodium/job/libsodium_build_windows_x86_static_release/lastSuccessfulBuild/artifact/libsodium_build_windows_x86_static_release.zip)
[libsodium.a for 64-bit Python](https://build.tox.chat/view/libsodium/job/libsodium_build_windows_x86-64_static_release/lastSuccessfulBuild/artifact/libsodium_build_windows_x86-64_static_release.zip)
2016-03-31 22:11:42 +02:00
### Linux
2016-05-30 21:26:07 +02:00
Dependencies:
2016-06-28 20:47:49 +02:00
1. Install latest Python3.4:
2016-06-23 11:46:48 +02:00
``sudo apt-get install python3``
2016-07-04 11:45:51 +02:00
2. [Install PySide](https://wiki.qt.io/PySide_Binaries_Linux) (recommended), using terminal - ``sudo apt-get install python3-pyside``, or install [PyQt4](https://riverbankcomputing.com/software/pyqt/download).
2016-05-30 21:26:07 +02:00
3. Install [toxcore](https://github.com/irungentoo/toxcore/blob/master/INSTALL.md) with toxav support in your system (install in /usr/lib/)
4. Install PyAudio:
2016-07-04 11:45:51 +02:00
``sudo apt-get install portaudio19-dev`` and ``sudo apt-get install python3-pyaudio``
5. Install PySocks: ``pip3.4 install PySocks``
6. [Download toxygen](https://github.com/xveduk/toxygen/archive/master.zip)
7. Unpack archive
8. Run app:
``python3.4 main.py``
2016-03-31 22:11:42 +02:00
## Compile Toxygen
2016-04-30 12:06:07 +02:00
Check [compile.md](/docs/compile.md) for more info