3.8 KiB
3.8 KiB
How to install Toxygen
Use precompiled binary:
Using pip3
Windows
pip3.4 install toxygen
Run app using toxygen
command.
Linux
- Install toxcore with toxav support in your system (install in /usr/lib/)
- Install PortAudio:
sudo apt-get install portaudio19-dev
- Install PySide:
sudo apt-get install python3-pyside
- Install toxygen:
sudo pip3.4 install toxygen
- Run toxygen using
toxygen
command.
OS X
- Install toxcore with toxav support in your system
- Install PortAudio:
brew install portaudio
- Install toxygen:
pip3.4 install toxygen
- Run toxygen using
toxygen
command.
Packages
Arch Linux: AUR
Debian/Ubuntu: tox.chat
From source code (recommended for developers)
Windows
- Download and install latest Python 3.4
- Install PySide (recommended) or PyQt4
- Install PyAudio:
pip3.4 install pyaudio
- Download toxygen
- Unpack archive
- Download latest libtox.dll build, download latest libsodium.a build, put it into \src\libs\
- Run \toxygen\main.py.
Optional: install toxygen using setup.py: python3.4 setup.py install
Linux
- Install latest Python3:
sudo apt-get install python3
- Install PySide:
sudo apt-get install python3-pyside
or install PyQt4 (sudo apt-get install python3-pyqt4
). - Install toxcore with toxav support in your system (install in /usr/lib/)
- Install PyAudio:
sudo apt-get install portaudio19-dev
andsudo apt-get install python3-pyaudio
(orpip3 install pyaudio
) - Download toxygen
- Unpack archive
- Run app:
python3.4 main.py
Optional: install toxygen using setup.py: python3.4 setup.py install
OS X
- Download and install latest Python 3.4
- Install PySide (recommended) or PyQt4
- Install PortAudio:
brew install portaudio
- Install PyAudio:
pip3 install pyaudio
- Install toxcore with toxav support in your system
- Download toxygen
- Unpack archive
- Run \toxygen\main.py.
Optional: install toxygen using setup.py: python3 setup.py install