-
Notifications
You must be signed in to change notification settings - Fork 11
Installation Update Guide
Go to https://git-scm.com/download/win and follow the instructions to install Git in the CMD.
sudo apt install git-all
pkg install git
Already installed in Mavericks 10.9 and above
Open the CMD/Terminal:
cd [any folder you want RedSea downloaded]
git clone https://github.com/Dniel97/RedSea.git
cd RedSea
ren config\settings.example.py settings.py
mv config/settings.example.py config/settings.py
Click on the green button and click on Download zip
or you can always use this link: Download Master ZIP. Unzip the downloaded RedSea-master.zip
to any folder you like for example ~/Music
.
After downloading RedSea, rename the file config/settings.example.py
to config/settings.py
, now you can set all your preferences inside settings.py
.
sudo apt update
sudo apt install python3 ffmpeg
cd [the folder you downloaded RedSea in]
cd RedSea
pip install -r requirements.txt
Note: You CAN install NodeJS and NPM with Termux but it won't work with the Electron captcha app!
apt update
pkg update
pkg install python ffmpeg
cd [the folder you downloaded RedSea in]
cd RedSea
pip install -r requirements.txt
If you haven't already installed Homebew: Run /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install python
brew install ffmpeg
cd [the folder you downloaded RedSea in]
cd RedSea
pip3 install -r requirements.txt
- Download ffmpeg
- Unpack the zip folder
fmpeg-nX.X-XX-XXXXXXXX-win64-gpl-X.X.zip
insideC:\Program Files\ffmpeg\
- Go to
Control Panel > System and Security > System > Advanced system settings > Environment Variables ...
- In the Environment Variables window, click the
Path
row under theVariable
column, then clickEdit..
- Click on
New
inside theEdit environment variable
window and pasteC:\Program Files\ffmpeg\bin\
- Now install a stable Python 3.6+release from https://www.python.org/downloads/windows/ and remember to install the right x64 or x86 according to your PC. Make sure to check the box
Add Python 3.6 to the PATH
!
Open the CMD:
cd [the folder you downloaded RedSea in]
cd RedSea
pip install -r requirements.txt
If you used the Recommended installation way you can easily update your existing installation (all your created sessions will still be intact, so you don't need to create new ones):
cd [the folder you downloaded RedSea in]
cd RedSea
git pull
pip install -r requirements.txt
After removing the fork from the fork network and rewriting the GIT history you need to perform a hard reset in order to use the above commands again:
git reset --hard origin/master
Sometimes it happens that the settings.py
file change, if you haven't modified it at all, you can simply:
cd [the folder you downloaded RedSea in]
cd RedSea
rm config/settings.py
mv config/settings.example.py config/settings.py
which will delete your old settings.py
and rename the new downloaded example file to settings.py
.
But if you modified settings.py
you need to make the same changes in the new downlaoded settings.example.py
.