Is it possible to install a package only in current project with PIP
13:24 18 Sep 2016

I am working both on Python/Django and nodejs.

There are 2 commands which are very similar: npm for node pip for python

npm is able to install third party package only for a selected project (in the node_modules project subfolder). npm can also install globaly the package on the system. There is an option for that.

pip seems to only install globals packages. Thats mean i can not have a "pip_module" folder in my project ?

Thanks

django pip