Time: Tuesday, Sept. 5th - 11:30 am to 12:20 pm
Location: FH 125 (accessible from inside the engineering computer lab)
This event is intended for students who are struggling to set up their Integrated Developement Environments (IDEs). We will cover...
If you're planning to come, please let us know by filling out this Google Form: https://forms.gle/MrSXy7e9seuH2q8v6.
Already have an IDE installed? Test it with this program:
print("Hello World!")
Python comes with a basic IDE called IDLE. To use it, open the Start Menu, type "IDLE", then click on the corresponding search result. In IDLE, press Ctrl + n
to edit a new Python program, type print("hello world")
into the new window, then press F5
to run it. Give it a filename like myprogram.py
.
Your instructor may advise you to use more powerful IDE like PyCharm. If so, be sure to download the Community Edition (using this direct link). Avoid downloading the Professional Edition. Finally, open the downloaded file and follow the installation instructions.
Already have an IDE installed? Test it with this program (you may need to create a program called HelloWorld
first through the IDE):
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
Already have an IDE installed? Test it with this program:
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
spirit
or grail
Linux servers (see below)spirit
and grail