update infos

This commit is contained in:
jb-alvarado 2020-02-03 20:40:13 +01:00
parent 011bff84a3
commit 3516ac3858
2 changed files with 8 additions and 3 deletions

View File

@ -7,6 +7,11 @@ init:
@echo "" @echo ""
@echo "-------------------------------------------------------------------" @echo "-------------------------------------------------------------------"
@echo "packages for ffplayout installed in \"$(current_dir)/venv\"" @echo "external packages for ffplayout installed in \"$(current_dir)/venv\""
@echo ""
@echo "run: \"$(current_dir)/venv/bin/python\" \"$(current_dir)/ffplayout.py\""
@echo ""
@echo "or:"
@echo "source ./venv/bin/activate"
@echo "./ffplayout.py"
@echo "" @echo ""
@echo "run \"$(current_dir)/venv/bin/python\" \"$(current_dir)/ffplayout.py\""

View File

@ -35,7 +35,7 @@ try:
import colorama import colorama
colorama.init() colorama.init()
except ImportError: except ImportError:
print('Some modules are not installed, ffplayout may or may not work') print('colorama import failed, no colored console output on windows...')
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------