Posts by Ladeia • 51 points
4 posts
-
2
votes1
answer95
viewsA: Error creating admin user Django 1.11
I think, from the excerpt: "/var/www/html/meusitedjango/lib/python3.4/site-packages/django/db/backends/sqlite3/base.py", line 328, in execute return Database.Cursor.execute(self, query, params)…
-
1
votes1
answer144
viewsQ: Error downloading branch in git
I was working on a branch on my personal machine, and when I went to download it on the company machine, using the windows power shell, I got the following message: PS projeto> git checkout -t…
-
1
votes1
answer31
viewsA: Makefile does not work on MINGW64. Can anyone help me?
bash is not finding make, it may not be installed or it may not be in its path. Make sure it is installed, and if you are creating an environment variable and add it to the system path.…
-
1
votes2
answers38
viewsA: C++ method assignment
When you do: media1 = aluno1->media(float n1, float n2); media2 = aluno2->media(float n1, float n2); You are doing two incompatible things, you are using an assignment, and a method…