Created
January 2, 2017 15:55
-
-
Save ddahan/9b415cd70170aad3222e8d7a5a55dc9d to your computer and use it in GitHub Desktop.
generer-cartes-qr-code-unique-python-1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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