1
00:00:00,480 --> 00:00:02,430
Now that you've downloaded PyCharm,

2
00:00:02,490 --> 00:00:07,320
we're ready to go ahead and install it onto your computer. Now this video,

3
00:00:07,350 --> 00:00:11,280
I'm going to go through all the steps for installing and setting up PyCharm on

4
00:00:11,280 --> 00:00:13,740
Windows. If you're on a Mac system,

5
00:00:13,890 --> 00:00:18,210
then go ahead and skip this lesson and you'll find the walkthrough on the next

6
00:00:18,210 --> 00:00:20,970
lesson. Once you download has completed,

7
00:00:21,000 --> 00:00:23,370
go ahead and click on the exe file

8
00:00:23,490 --> 00:00:27,780
if you're running on Windows. And then you're just going to go ahead and follow

9
00:00:27,840 --> 00:00:32,729
the wizard. And if you want to have an icon on your desktop, check the checkbox

10
00:00:32,729 --> 00:00:36,750
to add the launcher, and then go ahead and click next.

11
00:00:37,710 --> 00:00:42,710
Now leave everything as the default and click install. Installation should only

12
00:00:43,530 --> 00:00:46,830
take a couple of minutes. And once it's done,

13
00:00:46,860 --> 00:00:49,020
you can go ahead and click finish.

14
00:00:49,440 --> 00:00:54,440
Now, you can double click on the icon to open up the program and the first time

15
00:00:55,140 --> 00:00:59,370
you do so you'll need to agree to the privacy policy and choose whether if you

16
00:00:59,370 --> 00:01:03,960
want to share data with them. Now you get to pick your UI style,

17
00:01:04,019 --> 00:01:06,030
either dark mode or light mode,

18
00:01:06,900 --> 00:01:09,900
and then you can skip all the rest of the setup.

19
00:01:11,040 --> 00:01:15,750
Now to test it out, go ahead and create a new project and name it

20
00:01:15,780 --> 00:01:20,370
whatever you want. But the really important thing is to click the Project

21
00:01:20,370 --> 00:01:25,370
Interpreter drop-down and under base interpreter that you select the latest

22
00:01:26,190 --> 00:01:28,650
version of Python that you just installed,

23
00:01:28,980 --> 00:01:33,480
which in my case is Python 38, which stands for 3.8.

24
00:01:34,110 --> 00:01:37,530
It will take a few moments before your project gets set up.

25
00:01:38,100 --> 00:01:41,190
And once it does, you might see 

26
00:01:41,190 --> 00:01:45,090
a little popup that says something about Windows Defender.

27
00:01:45,690 --> 00:01:46,710
If you see this,

28
00:01:46,740 --> 00:01:51,360
then go ahead and click fix and click configure automatically.

29
00:01:51,810 --> 00:01:54,690
If you don't see this pop up, then don't worry about it.

30
00:01:55,350 --> 00:02:00,350
Now you can go ahead and right-click on your project folder and select new,

31
00:02:02,910 --> 00:02:06,960
and then new file. Now we're going to create a new file,

32
00:02:07,020 --> 00:02:11,430
which is going to be called main.py. And in this file,

33
00:02:11,460 --> 00:02:16,200
we're going to test it out just by writing a hello world that will get printed

34
00:02:16,230 --> 00:02:19,500
to the console. And once you're done,

35
00:02:19,530 --> 00:02:24,530
then go ahead and click on Run and then select the main.py file to run.

36
00:02:26,280 --> 00:02:30,480
And the console should now popup and you should see hello world printed.

37
00:02:31,290 --> 00:02:31,950
That's it.

38
00:02:31,950 --> 00:02:35,880
You're ready to start working with PyCharm and you should be able to use it in

39
00:02:35,880 --> 00:02:37,560
the same way that you used Repl.it.

