ERROS:
Error loading MySQLdb module: No module named MySQLdb
EnvironmentError: mysql_config not found
error: command 'cc' failed with exit status 1
Library not loaded: libmysqlclient.18.dylib
django.db.utils.OperationalError: (1049, "Unknown database 'cursodjango'")
CommandError: No database fixture specified. Please provide the path of at least one fixture in the command line.
raise...
Monday, August 11, 2014
Saturday, August 9, 2014
Django para iniciantes - Comandos 1 / OSX 10.9
Instalando :
pip é um sistema de gerenciamento de pacotes usado para instalar e gerenciar pacotes de software escritos nalinguagem de programação Python. Muitos pacotes podem ser encontrados no Python Package Index (PyPI).
Virtualenv é uma ferramenta que permite que criemos, ambientes virtuais isolados para projetos Python.
sh-3.2# easy_install pip virtualenvMacBook-de-Andre:Projects_Web...