-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
69 lines (52 loc) · 2.61 KB
/
INSTALL
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
69
Important Notes:
----------------
The instructions provided on this file assume you have Python installed and
configured on your operating system.
Currently FFcuesplitter-gui is still under development and no pre-compiled packages
have been distributed, but since it comes with a `setup.py` file, you can build it
and install it very easily into your operating system as a Python wheel.
However, to achieve this a virtual python environment is recommended, for
example using tools like `python3-venv` or `virtualenv`, which once activated,
you can install packages in the virtual environment using pip and then installing
FFcuesplitter-gui into it. At present, other installation methods that use
administrative privileges such as superuser or root are strongly discouraged.
Documentation:
- https://docs.python.org/3/library/venv.html
- https://docs.python-guide.org/dev/virtualenvs/
- https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/#creating-a-virtual-environment
- https://stackoverflow.com/questions/41573587/what-is-the-difference-between-venv-pyvenv-pyenv-virtualenv-virtualenvwrappe
-----
Linux
-----
First of all, install the essential packages using the package manager provided
by your linux distribution, then install wxPython version 4.0.7 or higher.
On debian-based distributions (Ubuntu, Kubuntu, Lubuntu, Mint, MXLinux, etc)
this package is identified as `python3-wxgtk4.0` .
Aldo make sure you have `ffmpeg` and `ffprobe` already installed.
Activate your virtual Python directory:
$ source 'path_to_environment_directory/bin/activate'
To install FFcuesplitter-gui, open a terminal window and type:
$ python3 -m pip install https://github.com/jeanslack/FFcuesplitter-GUI/tarball/main
To run the program type:
$ ffcuesplitter-gui
-------
Windows
-------
Activate your virtual Python directory:
.\path_to_environment_directory\Scripts\activate
To install FFcuesplitter-gui type:
python -m pip install https://github.com/jeanslack/FFcuesplitter-GUI/tarball/main
Make sure you have ffmpeg and ffprobe available somewhere on your system, as
these dependencies are not provided automatically by FFcuesplitter-gui.
Once you have ffmpeg and ffprobe, start FFcuesplitter-gui (just type ffcuesplitter-gui
in your command prompt window), click the Setup button, go to the FFmpeg tab and
provide the location on your file system.
-----
MacOS
-----
Activate your virtual Python directory:
$ source 'path_to_environment_directory/bin/activate'
To install FFcuesplitter-gui type:
$ python3 -m pip install https://github.com/jeanslack/FFcuesplitter-GUI/tarball/main
To run the program type:
$ ffcuesplitter-gui