Skip to content

Instantly share code, notes, and snippets.

@JuniorLima
Created July 29, 2013 12:32
Show Gist options
  • Save JuniorLima/6103991 to your computer and use it in GitHub Desktop.
Save JuniorLima/6103991 to your computer and use it in GitHub Desktop.
Virtualenv no Windows
Vá no diretório que deseja criar o ambiente virtual
cd C:\virtual
Crie um ambiente virtual
virtualenv --no-site-packages nomedoambiente
Ativar o ambiente virtual
cd C:\virtual\ambiente1.3\Scripts
Comando para ativar o ambiente virtual
activate
Instalar o django neste ambiente
pip install django==1.3.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment