2016-03-31 22:11:42 +02:00
|
|
|
# How to install Toxygen
|
2016-03-16 17:06:15 +01:00
|
|
|
|
2016-07-12 17:05:33 +02:00
|
|
|
### Linux
|
2016-07-05 20:43:51 +02:00
|
|
|
|
2022-09-27 15:17:48 +02:00
|
|
|
1. Install [c-toxcore](https://github.com/TokTok/c-toxcore/)
|
2016-07-05 20:43:51 +02:00
|
|
|
2. Install PortAudio:
|
|
|
|
``sudo apt-get install portaudio19-dev``
|
2017-06-24 14:44:55 +02:00
|
|
|
3. For 32-bit Linux install PyQt5: ``sudo apt-get install python3-pyqt5``
|
2018-01-26 16:43:19 +01:00
|
|
|
4. Install [OpenCV](http://docs.opencv.org/trunk/d7/d9f/tutorial_linux_install.html) or via ``sudo pip3 install opencv-python``
|
2022-09-27 15:17:48 +02:00
|
|
|
5. Install [toxygen](https://git.plastiras.org/emdee/toxygen/)
|
2017-06-24 14:44:55 +02:00
|
|
|
6. Run toxygen using ``toxygen`` command.
|
2016-07-27 16:53:50 +02:00
|
|
|
|
2016-03-31 22:11:42 +02:00
|
|
|
## From source code (recommended for developers)
|
|
|
|
|
|
|
|
### Windows
|
|
|
|
|
2017-06-24 14:44:55 +02:00
|
|
|
Note: 32-bit Python isn't supported due to bug with videocalls. It is strictly recommended to use 64-bit Python.
|
2016-03-31 22:11:42 +02:00
|
|
|
|
2017-06-24 14:44:55 +02:00
|
|
|
1. [Download and install latest Python 3 64-bit](https://www.python.org/downloads/windows/)
|
|
|
|
2. Install PyQt5: ``pip install pyqt5``
|
|
|
|
3. Install PyAudio: ``pip install pyaudio``
|
2017-07-06 20:32:35 +02:00
|
|
|
4. Install numpy: ``pip install numpy``
|
2017-07-12 20:36:19 +02:00
|
|
|
5. Install OpenCV: ``pip install opencv-python``
|
2024-02-07 16:34:15 +01:00
|
|
|
6. git clone --depth=1 https://git.plastiras.org/emdee/toxygen/
|
|
|
|
7. I don't know
|
2017-07-12 20:36:19 +02:00
|
|
|
8. Download latest libtox.dll build, download latest libsodium.a build, put it into \toxygen\libs\
|
2017-07-06 20:32:35 +02:00
|
|
|
9. Run \toxygen\main.py.
|
2017-06-24 14:44:55 +02:00
|
|
|
|
2016-03-31 22:11:42 +02:00
|
|
|
### Linux
|
|
|
|
|
2016-07-12 17:05:33 +02:00
|
|
|
1. Install latest Python3:
|
2016-06-23 11:46:48 +02:00
|
|
|
``sudo apt-get install python3``
|
2024-02-07 16:34:15 +01:00
|
|
|
2. Install PyQt5: ``sudo apt-get install python3-pyqt5``
|
2022-09-27 15:17:48 +02:00
|
|
|
3. Install [toxcore](https://github.com/TokTok/c-toxcore) with toxav support)
|
2024-02-07 16:34:15 +01:00
|
|
|
4. Install PyAudio: ``sudo apt-get install portaudio19-dev python3-pyaudio`` (or ``sudo pip3 install pyaudio``)
|
|
|
|
5. Install toxygen_wrapper https://git.plastiras.org/emdee/toxygen_wrapper
|
|
|
|
6. Install the rest of the requirements: ``sudo pip3 install -m requirements.txt``
|
|
|
|
7. git clone --depth=1 [toxygen](https://git.plastiras.org/emdee/toxygen/)
|
|
|
|
8. Look in the Makefile for the install target and type
|
|
|
|
``
|
|
|
|
make install
|
|
|
|
``
|
|
|
|
You should set the PIP_EXE_MSYS and PYTHON_EXE_MSYS variables and it does
|
|
|
|
``
|
|
|
|
${PIP_EXE_MSYS} --python ${PYTHON_EXE_MSYS} install \
|
|
|
|
--target ${PREFIX}/lib/python${PYTHON_MINOR}/site-packages/ \
|
|
|
|
--upgrade .
|
|
|
|
``
|
2017-06-24 14:44:55 +02:00
|
|
|
9. Run app:
|
2024-02-07 16:34:15 +01:00
|
|
|
``python3 ${PREFIX}/lib/python${PYTHON_MINOR}/site-packages/bin/toxygen``
|
2016-07-27 16:53:50 +02:00
|
|
|
|