Step 1. Make and activate virtual Environment in your computer In windows > virtualenv ecom > Scripts\activate In mac and linux $ virtualenv ecom $ source bin/activate
Step 2. Clone the project $ git clone https://github.com/chuchu387/Django-E-commerce.git if you donot have git in your computer, install it before and clone it again.
Step 3: Install dependencies $ pip install -r requirements.txt or $ pip install django pillow requests six
Step 4: Apply the migration if any $ python manage.py migrate
Step 5: You can now open project folder in your editor
Step 6: Run Development server $ python manage.py runserver
Thank You 😊