Skip to content

Instantly share code, notes, and snippets.

@ddahan
Created January 2, 2017 15:55
Show Gist options
  • Save ddahan/9b415cd70170aad3222e8d7a5a55dc9d to your computer and use it in GitHub Desktop.
Save ddahan/9b415cd70170aad3222e8d7a5a55dc9d to your computer and use it in GitHub Desktop.
generer-cartes-qr-code-unique-python-1
mkdir qr_card_generator
cd qr_card_generator
virtualenv -p /le/chemin/de/python3 venv # Init du virtualenv en spécifiant le chemin de Python3 (sur mon système, Python 2.7 est par défaut)
source venv/bin/activate # Activation du virtualenv
pip install qrcode pillow # Installation des deux libs nécessaires
touch card-generator.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment