mirror of
https://github.com/vondas-network/videobeaux.git
synced 2025-12-05 15:30:02 +01:00
16 lines
402 B
Bash
16 lines
402 B
Bash
#!/bin/bash
|
|
|
|
# INSTALL HOMEBREW
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
# INSTALL FFMPEG
|
|
brew install ffmpeg
|
|
# CLONE PROJECT
|
|
git clone git@github.com:schwwaaa/videobeaux.git
|
|
# GO TO DIRECTORY
|
|
cd videobeaux
|
|
# CREATE VIRTUAL ENVIRONMENT
|
|
python3 -m venv env
|
|
# ACTIVATE VIRTUAL ENVIRONMENT
|
|
source env/bin/activate
|
|
# INSTALL DEPENDENCIES
|
|
pip install . |