Minor change to intall section

This commit is contained in:
Anon 2022-07-14 15:08:09 -07:00
parent 09c3c08184
commit 4295671e68

View File

@ -18,15 +18,15 @@ To setup the python3 environment (for Arch Linux) run the following commands:
sudo pacman -Syu sudo pacman -Syu
sudo pacman -S --needed python git sudo pacman -S --needed python git
git clone 'https://git.yandere.cc/Anon/YandereLewdBot.git' git clone 'https://git.yandere.cc/Anon/YandereLewdBot.git'
cd yandereLewdBot/ cd YandereLewdBot/
python -m venv venv python -m venv venv
source ./venv/bin/activate source ./venv/bin/activate
pip install --upgrade pip pip install --upgrade pip
pip install -r requirements.txt pip install -r requirements.txt
deactivate deactivate
# Generate the default folder structure. # Generate the default folder structure.
mkdir md5 mkdir ./md5
mkdir -p rsc/{safe,nsfw} mkdir -p ./rsc/{safe,nsfw}
cp -vn ./default/cfg.py ./src/cfg.py cp -vn ./default/cfg.py ./src/cfg.py
./run.sh -h ./run.sh -h
``` ```