Installing package requirements
You've now written a requirements.txt file to recreate your package's environment using a pip install command. Given that you are running a shell session in the work_dir structure shown below, what command would properly recreate the my_package environment from requirements.txt?
work_dir/
├─ my_package
│├─ __init__.py
│└─ utils.py
├─ requirements.txt
└─ setup.py
This exercise is part of the course
Software Engineering Principles in Python
Hands-on interactive exercise
Turn theory into action with one of our interactive exercises
Start Exercise