Re: mysqlclient is already installed but it will give an error,please help

2018-09-05 Thread Gagan Kalia
With Anaconda distribution, use conda install command rather than using pip. On Wed 5 Sep, 2018, 7:23 PM Deepak Kumar jha, wrote: > Yes, i am using mysqlclient 1.3.13 > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from

Re: Error: C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\Tools\\MSVC\\14.14.26428\\bin\\HostX86\\x86\\cl.exe' failed with exit status 2

2018-09-02 Thread Gagan Kalia
What Python distribution are you using on windows? What command are you using when you see this error? On 02-Sep-2018 6:46 PM, "Rupam Hazra" wrote: Hi, I am stuck with this issue when i am installing mysqlclient this issue * C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Too

Re: MySQL caching_sha2_password

2018-08-24 Thread Gagan Kalia
For me below solved the issue. The oracle MYSql connector was refusing to install. The installer was just disappearing and doing nothing. https://github.com/passbolt/passbolt_docker/issues/103 Command that worked: ALTER USER 'username'@'ip_address' IDENTIFIED WITH mysql_native_password BY 'p

Re: GROUP BY

2018-08-13 Thread Gagan Kalia
Try not to use _ (underscore) character as prefix or postfix to any user defined variable or db column. Its not recommended in django. On Tue 14 Aug, 2018, 1:52 AM Mikkel Kromann, wrote: > I'm trying to sum the field "ownProduction", grouping it by the foreign > key "market" (using the market's

Re: Multi Tenancy

2018-08-10 Thread Gagan Kalia
Andrew, Even if you keep the application servers in another geography, wouldn't it be a performance hit in terms of accessing the Database hosted in another geography? My take would be to keep the systems in the same geography to avoid the performance issues down the line and making the customer d