You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Descarga del proyecto
git clone https://github.com/Jhonatan2022/Red-Social-With-Django.git
# Ingresamos a la carpetacd'.\Red Social\'
# Si no tenemos virtualenv, lo instalamos
pip install virtualenv
# Creamos un entorno virtual
virtualenv env
# Damos permisos a nuestro sistema para que pueda ejecutar Scripts# Ejecutamos powerShell como administrador y ponemos:
Set-ExecutionPolicy RemoteSigned
# Activamos el entorno virtual
env\Scripts\activate
# Instalamos las dependencias del app
pip install -r requirements.sh
# Migramos todo a la base de datos
python manage.py migrate