Closed za3k closed 1 month ago
after runing this
#!/bin/bash -e
rm -rf ./venv || echo no venv
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
echo setup ok
./qr-backup --verbose --encrypt secretPass Dockerfile
echo backup done
./qr-backup --restore --verbose --encrypt secretPass Dockerfile.qr.pdf
echo backup restored
so i would say its work under mac os after installing font from repo (DejaVuSansMono.ttf
) and zbar
Thanks. Could you run the test suite, to make sure everything works?
Then I can document how to get it working. Also I would love a link to show people how to install the font. I don't have a mac so I'm not sure how it works.
to install font you double click it and press install font ^_^
im afraid tests fails
make test
Instead of specifiying the font,
PIL.ImageFont.truetype("DejaVuSansMono.ttf"
Could you by default, load the default and if a font is specified, then use that? PIL.ImageFont.load_default()
This way you can drop a depenancy
This might work already. Find out.