Add necessary requirement of external libraries in your Python project automatically by one instruction.
You can put your necessary libraries as like requirements.txt.
Open to your project directory then put as below:
pip3 install -r requirements.txt
Of course this instruction is for Python3 obviously, if you're using Python2.7, you just change _pip3_
to _pip_
.
pip install -r requirements.txt
Prepare a *requirements.txt*
and content will be as below.
lxml==3.6.0
python-docx==0.8.6
rx==1.5.2