Re: [Edu-sig] Editors/IDEs for teaching

2018-09-14 Thread Jurgis Pralgauskis
maybe http://www.pyzo.org/mission.html (seems like simple, though oriented towards scientists, but lacks docs) ___ Edu-sig mailing list Edu-sig@python.org https://mail.python.org/mailman/listinfo/edu-sig

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-09 Thread kirby urner
On Mon, Jul 9, 2018 at 7:46 AM, Andrew Harrington wrote: > Not a full IDE, but the fine free CS1-ish text > https://runestone.academy/runestone/static/thinkcspy/index.html > has the ability to enter Python directly into the browser and run it. > > ​Awesome! +1

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-09 Thread Andrew Harrington
Not a full IDE, but the fine free CS1-ish text https://runestone.academy/runestone/static/thinkcspy/index.html has the ability to enter Python directly into the browser and run it. When you get to advanced stuff and long programs, it makes sense to switch to a real IDE, but for a painless start,

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-09 Thread Kevin Cole
On Tue, Jul 3, 2018 at 10:52 AM Nicholas H.Tollervey wrote: On 03/07/18 15:27, Andre Roberge wrote: > > * Mu (https://codewith.mu/). Primarily intended for young learners and > > hobbyists. > > Nope. > > I'm the author of Mu. It's for beginner programmers of all levels (as it > says so on the

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-09 Thread Andre Roberge
On Mon, Jul 9, 2018 at 8:18 AM Aivar Annamaa wrote: > Hi! > > I just found an educational Python IDE nobody hasn't mention yet -- > TigerJython: http://jython.tobiaskohn.ch/index.html > ​ Thank you very much for this. For those that look at the available links and do not pursue further because

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-09 Thread Aivar Annamaa
Hi! I just found an educational Python IDE nobody hasn't mention yet -- TigerJython: http://jython.tobiaskohn.ch/index.html Here is author's PhD thesis: https://tobiaskohn.ch/files/Dissertation_TKohn.pdf best regards, Aivar 03.07.2018 17:27 Andre Roberge kirjutas: Hi everyone, I'm

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-05 Thread kirby urner
​Regarding Atom.io editor for Python (and other languages), I'm just now discovering the Hydrogen plug-in. This allows highlighting contiguous lines in a script and ​treating this as a cell, as if in a Jupyter Notebook (but we're in a normal program). The output inserts directly below. Here's a

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-04 Thread A Jorge Garcia via Edu-sig
If u want more bells and whistles, cocalc.com like sage but it's a subscription service. ⁣Sent from BlueMail ​ On Jul 4, 2018, 12:26 PM, at 12:26 PM, A Jorge Garcia wrote: >I like Processing and c9.io for my Computer Science kids. We also used >arduino studio with codrones. > >My math students

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-04 Thread A Jorge Garcia via Edu-sig
I like Processing and c9.io for my Computer Science kids. We also used arduino studio with codrones. My math students and I use python a lot on sagecell.sagemath.org. HTH, AJG ⁣Sent from BlueMail ​ On Jul 4, 2018, 12:16 PM, at 12:16 PM, Andre Roberge wrote: >On Wed, Jul 4, 2018 at 12:09 PM

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-04 Thread Andre Roberge
On Wed, Jul 4, 2018 at 12:09 PM Wanjun Zhang wrote: > Hi, > > We recently had to pick a beginner-friendly python editor for our Invent > to Learn summer program. We also teach a lot of Raspberry Pi based Intro to > Python workshops for kids and adults alike. In addition to editor/IDE, > there’s

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-04 Thread Wanjun Zhang
orld.) Best, Andr? -- next part -- An HTML attachment was scrubbed... URL: < http://mail.python.org/pipermail/edu-sig/attachments/20180703/ae43b88d/attachment-0001.html> -------------- Message: 3 Date: Tue, 3 Jul 2018 15:48:52 +0100 From: "

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-04 Thread René Dudfield
Debian/unix: because comparative learning, depth, and libre software is also important. Jupyter: because science. Notepad/vim/nano: because they are there. No editor/ipython: because python has a repl. ___ Edu-sig mailing list Edu-sig@python.org

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-04 Thread kirby urner
> > https://github.com/quobit/awesome-python-in-education/ > blob/master/README.md#ides > lists a bunch of IDEs, but not with such a useful table of structured > criteria. > > ​Great listing of resources! Yes, I like using the #%% feature to bracket sections of a script, used that tonight. I

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread Wes Turner
Spyder has code cell support for evaluating a delimited block of code at a time: ```python #%% cell 1 print(1) # In[0]: (cell 2) print(2) ``` - Ctrl-Return -- Run cell - Shift-Return -- Run cell and advance $ conda install -y spyder You can export Jupyter notebooks to .py files with the

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread kirby urner
On Tue, Jul 3, 2018 at 12:45 PM, Andre Roberge wrote: > > > On Tue, Jul 3, 2018 at 3:59 PM kirby urner wrote: > >> >> I use Spyder in my adult beginner Python classes. I like the integrated >> REPL (not just a window to Terminal) and the I-Python console. >> > > > ​Looking at some old emails,

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread Andre Roberge
On Tue, Jul 3, 2018 at 3:59 PM kirby urner wrote: > > I use Spyder in my adult beginner Python classes. I like the integrated > REPL (not just a window to Terminal) and the I-Python console. > ​Looking at some old emails, about 3 years ago I had concluded that Spyder would have been my first

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread kirby urner
I use Spyder in my adult beginner Python classes. I like the integrated REPL (not just a window to Terminal) and the I-Python console. Also, I'm a fan of the Anaconda distro of Python which makes it easy to jump into Jupyter Notebooks, an introductory topic in my courses. Given Jupyter grew out

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread Aivar Annamaa
Hi! I am author of Thonny. My initial target group was my students in our university's first programming course (CS 101 according to your taxonomy). I wanted an easy way to show them the exact meaning of main programming concepts. Thonny was later successfully used in several MOOC-s (both

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread Nicholas H.Tollervey
Thank you for your kind words! :-) Mu 1.0.final should be out in about a fortnight. N. On 03/07/18 16:29, Carl Karsten wrote: Mu bundles Python 3... I did not know that, and now I love it even more. Thank you!!! I do "intro to Python" workshops, and I *hate* the "setup environment" step;

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread Andre Roberge
On Tue, Jul 3, 2018 at 12:11 PM Nicholas H.Tollervey wrote: > On 03/07/18 16:04, Andre Roberge wrote: > > > > ​ I do agree with what you write ... but, at the same time, I've been > > struggling to define appropriate categories. Some software can be > > designed for use by (young) adult

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread Carl Karsten
> Mu bundles Python 3... I did not know that, and now I love it even more. Thank you!!! I do "intro to Python" workshops, and I *hate* the "setup environment" step; it chews up so much limited precious time. I've used mu for about 30 min about a month ago when I attended a 1 hour conference

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread Nicholas H.Tollervey
On 03/07/18 16:04, Andre Roberge wrote: ​ I do agree with what you write ... but, at the same time, I've been struggling to define appropriate categories. Some software can be designed for use by (young) adult beginners but not for young children. (For example: anything that will rely

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread Andre Roberge
On Tue, Jul 3, 2018 at 11:52 AM Nicholas H.Tollervey wrote: > On 03/07/18 15:27, Andre Roberge wrote: > > * Mu (https://codewith.mu/). Primarily intended for young learners and > > hobbyists. > > Nope. > > ​Thanks!​ > I'm the author of Mu. It's for beginner programmers of all levels (as it >

Re: [Edu-sig] Editors/IDEs for teaching

2018-07-03 Thread Nicholas H.Tollervey
On 03/07/18 15:27, Andre Roberge wrote: * Mu (https://codewith.mu/). Primarily intended for young learners and hobbyists. Nope. I'm the author of Mu. It's for beginner programmers of all levels (as it says so on the website). Beginner programmer is a "stage" not an age. ;-) The design