Created
July 29, 2013 12:32
-
-
Save JuniorLima/6103991 to your computer and use it in GitHub Desktop.
Virtualenv no Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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