gmocamilotd
10/29/2019 - 5:59 PM

Instalacion de dependencias en pyhton django

Since you have not talked about virtual environment, assumed that you already setup the environment and activated it.First get all the libraries lists in requirement.txt file in your project directory by typing below command,

pip freeze > requirements.txt

when you need to setup project in another system just run this

pip install -r requirements.txt

y si hubiera problemas con el PIP resintalarlo, x si acaso

python -m pip install --upgrade pip