Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 902 Bytes

File metadata and controls

21 lines (15 loc) · 902 Bytes

How to add new dependency

System requirements

  • Linux/Ubuntu : add it to requiremtns.apt
  • Mac : add it to requiremtns.brew

Python package

  • Add to requiremtns.pip & requiremtns-testing.pip using the following procedure
    • Create and activate new virtualenv virtualenv -p python3 my_env && . my_env/bin/activate
    • Install old requirements pip install -r requiremtns.pip
    • Save installed package in a file using pip freeze > file1.txt or using a tool like pepreqs
    • Install new packag(s)
    • Save installed package in a file using pip freeze > file2.txt or using a tool like pepreqs
    • Get difference between 2 files diff file1.txt file2.txt
    • Add difference package to requirements.pip & requirements-testing.pip

Nodejs package - Add to requirements.npm