# A virtualenv's python pip call:
$ project1/bin/python -m pip install xxxxx
Where:
- project1: Is the env folder inside your root folder that contain all
your python modules included python it self.
- -m is a python flag stand for: "run library module as a script" .
- pip: Is the package manager.
- install: is the pip command to install the desired module.
- xxxxx: its the desired python module (no, its not about film genres)
P.S: In this way you ensure to be using the python version you installed on your virtualenv unequivocally
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…