Re: Fwd: Problemas para ejecutar Python en windows 7

2020-04-02 Thread Souvik Dutta
If you can read English. The same problem occurred with me some times ago. The cause of it was that windows thought that my .py files where trojans and I had to delete them permanently which solved the problem. Try this once. Something is better than nothing. Thank you. If you cannot read English.

jupyter notebook permission denied

2020-04-02 Thread joseph pareti
I have installed anaconda on windows 10, and when launching jupyter notebook from the anaconda navigator, it works fine. However, I am bound to work on files within the folder c:\Users\username\... If I launch jupyter notebook from a windows 10 cmd prompt, I can cd to my project directory. Howeve

Re: Fwd: Problemas para ejecutar Python en windows 7

2020-04-02 Thread DL Neil via Python-list
On 2/04/20 7:24 PM, Honori R. Camacho wrote: Gracias por atender esta solicitud. Si, no explique que antes se ejecutaba correctamente, pero ocurio que por error se desinstalo un *frameworks* y desde ahi consideramos, empezaron los problemas. Se reinstalo el Python 3.5.4 desde los repositorios d

Re: Python error

2020-04-02 Thread MRAB
On 2020-04-02 19:09, J Conrado wrote: Hi, I have the version of python installed: Python 3.7.6 and Python 3.8.1 If I type: python Python 3.7.6 (default, Jan  8 2020, 19:59:22) [GCC 7.3.0] :: Anaconda, Inc. on linux Type "help", "copyright", "credits" or "license" for more information. >>> impo

Re: Python error

2020-04-02 Thread Mirko via Python-list
Am 02.04.2020 um 20:09 schrieb J Conrado: > Hi, > > I have the version of python installed: > Python 3.7.6 and Python 3.8.1 > If I type: > python > Python 3.7.6 (default, Jan 8 2020, 19:59:22) > [GCC 7.3.0] :: Anaconda, Inc. on linux > Type "help", "copyright", "credits" or "license" for more inf

Python error

2020-04-02 Thread J Conrado
Hi, I have the version of python installed: Python 3.7.6 and Python 3.8.1 If I type: python Python 3.7.6 (default, Jan  8 2020, 19:59:22) [GCC 7.3.0] :: Anaconda, Inc. on linux Type "help", "copyright", "credits" or "license" for more information. >>> import numpy it is Ok, no error, but if I di

EuroPython 2020: CFP for the Online Event

2020-04-02 Thread M.-A. Lemburg
Since we had started the CFP under the assumption of running an in-person conference and are now switching EuroPython 2020 to an online event, we will extend the CFP for another two weeks until April 12, to give everyone who would like to participate in this new format, a chance to submit a session

Re: numpy array question

2020-04-02 Thread Peter Otten
jagmit sandhu wrote: > python newbie. I can't understand the following about numpy arrays: > > x = np.array([[0, 1],[2,3],[4,5],[6,7]]) > x > array([[0, 1], >[2, 3], >[4, 5], >[6, 7]]) > x.shape > (4, 2) > y = x[:,0] > y > array([0, 2, 4, 6]) > y.shape > (4,) > > Why is t

Widget common to multiple views: import from commonDlg?

2020-04-02 Thread Rich Shepard
This application has 8 data entry/edit view modules of tkinter widgets and an additional module called commonDlg which is imported into each of the others. Each view module has a comments tk.Text widget: self.inputs['Notes'] = cd.LabelInput( taxoninfo, "notes", input_class

Re: Identifying tkinter version [ANSWERED]

2020-04-02 Thread Rich Shepard
On Thu, 2 Apr 2020, Terry Reedy wrote: Or run IDLE, select Help > About IDLE and the patchlevel is displayed. Terry, Interesting. I use emacs but I'll keep this in mind. Regards, Rich -- https://mail.python.org/mailman/listinfo/python-list

Re: how to specify trusted hosts in windows config file

2020-04-02 Thread Souvik Dutta
This is the ideal thing a hacker would do. Reports say that codes are a hacker's sweet spot. Because most of the time a random person would visit the code and copy and paste it because he has to get the job done in a limited time. Nothing could actually be 100% trusted in the internet. Because webs

Re: numpy array question

2020-04-02 Thread edmondo . giovannozzi
Il giorno giovedì 2 aprile 2020 06:30:22 UTC+2, jagmit sandhu ha scritto: > python newbie. I can't understand the following about numpy arrays: > > x = np.array([[0, 1],[2,3],[4,5],[6,7]]) > x > array([[0, 1], >[2, 3], >[4, 5], >[6, 7]]) > x.shape > (4, 2) > y = x[:,0] > y