Skip to content

Installation using pip

Gianluca Pernigotto edited this page Jun 19, 2024 · 7 revisions

This wiki page covers Videomass installation using pip


Videomass is hosted on PyPi (Python Package Index) and has the wheels for all supported operating systems on which Python is installed and which can support the wxPython Phoenix toolkit. This means you can open a console (command prompt for Windows or terminal for Unix) and install, update or remove Videomass:

Installation

python3 -m pip install videomass

MS-Windows and MacOS python dependency packages will be resolved automatically.

Gnu/Linux and FreeBSD require manual installation of wxPython (the reason can be found here) using your official package manager or using pip to install a specific version of wxPython compatible with your Linux distribution.

Update

python3 -m pip install --upgrade videomass

Run Videomass from command line

videomass

videomass [-h] [-v] [-c] [--make-portable]

Run Videomass from Python

>>> from videomass import gui_app
>>> gui_app.main()

Uninstall

python3 -m pip uninstall videomass