New Project
Creating a package.json
alike environment
package.json
alike environmentYou can use Virtual Environments in python to locally install dependencies in a project.
Active the environment
Deactivate
Now any pip
will install dependencies locally.
Create requirements.txt
This file will act like a package.json
, saving the dependencies.
To reinstall from a requirements.txt
Will have to recreate the environment first.
Last updated