-
Notifications
You must be signed in to change notification settings - Fork 39
Adding a new requirement
Rudrakshi edited this page Dec 3, 2022
·
1 revision
If you have installed a new dependency, then use this command to add it.
Using npm
npm install <package-name> --save-dev
Using yarn
yarn install <package-name> --save-dev
If you have installed a new dependency, the pip freeze command lists the third-party packages and versions installed in the environment.
Windows
pip freeze > requirements.txt
Linux
pip3 freeze > requirements.txt