setup a new virtualenv for django in windows

Post on 22-Dec-2014

2.198 Views

Category:

Technology

1 Downloads

Preview:

Click to see full reader

DESCRIPTION

Pycon India 2012 - Django Tutorial - Pre-requisite Series

TRANSCRIPT

Setup a New Virtual Env for Django

Create a new Virtual Env

> virtualenv mytodo

Activate it

> Scripts\activate

Install yolk using pip

> pip install yolk

Use yolk and List the installed tools

> yolk -l

Install Django using pip

> pip install django

Verify the Installation

> python

Install mysql-python using pip

> pip install mysql-python

It will fail

Copy the Selected Items

And Paste it here

Verify the Connector

Setup is ready

top related