ERROR in loading data

2020-02-04 Thread laiba . zubair96
#load the training and testing data, then scale it into the # range [0, 1] print("[INFO] loading ADNI data...") ((trainX, trainY), (testX, testY)) = '/content/gdrive/My Drive/3_Classes/'.loads_data() trainX = trainX.astype("float") / 255.0 testX = testX.ast

Re: ERROR in loading data

2020-02-04 Thread Rhodri James
On 04/02/2020 14:49, laiba.zubai...@gmail.com wrote: #load the training and testing data, then scale it into the # range [0, 1] print("[INFO] loading ADNI data...") ((trainX, trainY), (testX, testY)) = '/content/gdrive/My Drive/3_Classes/'.loads_data() trainX = t

Re: ERROR in loading data

2020-02-04 Thread Joel Goldstick
On Tue, Feb 4, 2020 at 9:51 AM wrote: > > #load the training and testing data, then scale it into the > # range [0, 1] > print("[INFO] loading ADNI data...") > ((trainX, trainY), (testX, testY)) = '/content/gdrive/My > Drive/3_Classes/'.loads_data() What is the class of

How to instlal pyodbc, without pip

2020-02-04 Thread dcwhatthe
Hi, Pip won't work on my desktop, because of the firewalls we have set up. I have the version from github. Assuming my Python 3.8.1 Home Directory is C:\Python, How can I install pyodbc pyodbc-master.zip? Which folders should I unzip it into? Regards, -- https://mail.python.org/mailma

Re: How to instlal pyodbc, without pip

2020-02-04 Thread DL Neil via Python-list
On 5/02/20 6:34 AM, dcwhat...@gmail.com wrote: Pip won't work on my desktop, because of the firewalls we have set up. I have the version from github. Assuming my Python 3.8.1 Home Directory is C:\Python, How can I install pyodbc pyodbc-master.zip? Which folders should I unzip it into? I

Re: How to instlal pyodbc, without pip

2020-02-04 Thread Terry Reedy
On 2/4/2020 12:34 PM, dcwhat...@gmail.com wrote: Pip won't work on my desktop, because of the firewalls we have set up. I have the version from github. Assuming my Python 3.8.1 Home Directory is C:\Python, How can I install pyodbc pyodbc-master.zip? If you have dependencies installed, you s

Re: How to instlal pyodbc, without pip

2020-02-04 Thread Souvik Dutta
You might use chocolatey if you like. On Tue, 4 Feb, 2020, 11:05 pm , wrote: > Hi, > > Pip won't work on my desktop, because of the firewalls we have set up. > > I have the version from github. Assuming my Python 3.8.1 Home Directory > is C:\Python, How can I install pyodbc pyodbc-master.zip?

How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Souvik Dutta
Hi, I made a python gui with pyqt5 and packed it with pyinstaller. It is running well in my computer but when I gave it to a friend who doesn't have any python version installed and it didn't run. The message was "This app cannot be run on your pc.". How can I solve this??? -- https://mail.python.

Re: How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Chris Angelico
On Wed, Feb 5, 2020 at 2:32 PM Souvik Dutta wrote: > > Hi, > I made a python gui with pyqt5 and packed it with pyinstaller. It is > running well in my computer but when I gave it to a friend who doesn't have > any python version installed and it didn't run. The message was "This app > cannot be ru

Re: How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Michael Torrie
On 2/4/20 8:33 PM, Chris Angelico wrote: > On Wed, Feb 5, 2020 at 2:32 PM Souvik Dutta wrote: >> >> Hi, >> I made a python gui with pyqt5 and packed it with pyinstaller. It is >> running well in my computer but when I gave it to a friend who doesn't have >> any python version installed and it didn

Re: How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Cameron Simpson
On 04Feb2020 21:27, Michael Torrie wrote: On 2/4/20 8:33 PM, Chris Angelico wrote: On Wed, Feb 5, 2020 at 2:32 PM Souvik Dutta wrote: I made a python gui with pyqt5 and packed it with pyinstaller. It is running well in my computer but when I gave it to a friend who doesn't have any python ver

Mauritius UG (pymug) 2019 End of Year Report

2020-02-04 Thread Abdur-Rahmaan Janhangeer
Greetings list, Today our User Group published it's first ever end-of-year report: https://www.pymug.com/assets/pymug_2019_report.pdf Feel free to ask me anything! Yours, Abdur-Rahmaan Janhangeer pythonmembers.club | github M

Re: How to make a cross platform python app with pyinstaller??

2020-02-04 Thread Abdur-Rahmaan Janhangeer
Use the Dev version of pyinstaller. pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip Yours, Abdur-Rahmaan Janhangeer pythonmembers.club | github Mauritius On Wed, Feb 5, 2020 at 7:31 AM Souvik Dutta