1 00:00:00,840 --> 00:00:04,083 -: All right. Oh man, we've been talking for a long time. 2 00:00:05,907 --> 00:00:08,160 How can we finally run Python code? 3 00:00:08,160 --> 00:00:09,810 I wanna start coding, right? 4 00:00:09,810 --> 00:00:12,840 Let's download this translation service, right? 5 00:00:12,840 --> 00:00:14,460 Well, ah. 6 00:00:14,460 --> 00:00:15,450 I'm sorry. 7 00:00:15,450 --> 00:00:18,540 Actually, this is something we're going to do later on 8 00:00:18,540 --> 00:00:19,410 in the course. 9 00:00:19,410 --> 00:00:20,700 And I know what you're thinking. 10 00:00:20,700 --> 00:00:24,450 W-T-F Andre. What is this, kindergarten? 11 00:00:24,450 --> 00:00:25,500 I mean, come on. 12 00:00:25,500 --> 00:00:27,210 I came here to learn Python. 13 00:00:27,210 --> 00:00:30,540 Start teaching me Python. And I know, I know. 14 00:00:30,540 --> 00:00:31,373 And don't worry. 15 00:00:31,373 --> 00:00:33,420 In this course, we're going to get you to have 16 00:00:33,420 --> 00:00:35,670 a professional set up with Python. 17 00:00:35,670 --> 00:00:39,210 So that when you go into the workforce you are doing 18 00:00:39,210 --> 00:00:41,310 what you're supposed to be doing. 19 00:00:41,310 --> 00:00:44,673 We're going to learn how to have all of these set up. 20 00:00:46,389 --> 00:00:49,500 First, we're gonna have our terminal, or command line, 21 00:00:49,500 --> 00:00:54,240 where we can run Python from right in what we call a repl. 22 00:00:54,240 --> 00:00:56,790 And then we're also going to use code editors, 23 00:00:56,790 --> 00:01:00,150 like Sublime Text and Visual Studio Code. 24 00:01:00,150 --> 00:01:02,640 We're also going to use IDEs, 25 00:01:02,640 --> 00:01:04,769 or integrated developer environments, 26 00:01:04,769 --> 00:01:06,810 like Pycharm and Spyder. 27 00:01:06,810 --> 00:01:10,470 And we're also going to use Jupyter Notebooks. 28 00:01:10,470 --> 00:01:13,050 And I'm going to show you how to set up all of these 29 00:01:13,050 --> 00:01:16,980 on your computer, what the pros and cons of using each are, 30 00:01:16,980 --> 00:01:20,010 and how some of them might be used for machine learning, 31 00:01:20,010 --> 00:01:24,150 while others might be used for writing quick scripts. 32 00:01:24,150 --> 00:01:26,100 And I know this is a lot, 33 00:01:26,100 --> 00:01:28,770 but it's good to have these skills 34 00:01:28,770 --> 00:01:31,860 depending on what type of job you want. 35 00:01:31,860 --> 00:01:34,590 And if you're a professional Python developer, 36 00:01:34,590 --> 00:01:36,660 well you should be using most of these, 37 00:01:36,660 --> 00:01:39,750 but there's a problem if I start introducing this 38 00:01:39,750 --> 00:01:41,310 in the course right away. 39 00:01:41,310 --> 00:01:45,120 You see, these tools you have to install differently 40 00:01:45,120 --> 00:01:47,400 based on what computer you have. 41 00:01:47,400 --> 00:01:50,696 So if you're using a Mac, a Windows, a Linux, 42 00:01:50,696 --> 00:01:53,160 maybe you're using a mobile phone, 43 00:01:53,160 --> 00:01:55,080 because we want to get started right away 44 00:01:55,080 --> 00:01:57,060 and write some code instead of worrying 45 00:01:57,060 --> 00:01:59,910 about installations and making sure that your computer 46 00:01:59,910 --> 00:02:01,530 is all set up. 47 00:02:01,530 --> 00:02:04,680 I wanna make sure that all of us can get started right away 48 00:02:04,680 --> 00:02:06,630 no matter what device you're on. 49 00:02:06,630 --> 00:02:09,060 Now, if you're really, really keen, 50 00:02:09,060 --> 00:02:12,090 head on over to the section where I show you how to 51 00:02:12,090 --> 00:02:15,660 install all these on all of your devices 52 00:02:15,660 --> 00:02:17,730 so that you have it set up. 53 00:02:17,730 --> 00:02:20,370 And you can come back to this section. 54 00:02:20,370 --> 00:02:23,340 But I warn you, it's easy to run into problems 55 00:02:23,340 --> 00:02:26,580 and get confused when installing these tools. 56 00:02:26,580 --> 00:02:29,970 So, I recommend sticking with what I'm about to show you 57 00:02:29,970 --> 00:02:33,090 and I promise we'll get you this professional setup. 58 00:02:33,090 --> 00:02:35,820 No other course is going to teach you all these things. 59 00:02:35,820 --> 00:02:37,830 But before I dive into these, 60 00:02:37,830 --> 00:02:41,730 we need to learn, well, we need to be able to just have fun 61 00:02:41,730 --> 00:02:43,050 and write some code. 62 00:02:43,050 --> 00:02:45,540 So what is this trick that I keep mentioning where 63 00:02:45,540 --> 00:02:47,160 we don't have to install any of these 64 00:02:47,160 --> 00:02:48,810 and still run Python? 65 00:02:48,810 --> 00:02:50,610 It's called Repl. 66 00:02:50,610 --> 00:02:53,463 You see, instead of us having to download this, 67 00:02:54,766 --> 00:02:55,953 we can go to repl.it. 68 00:02:58,530 --> 00:03:02,700 And when you go here, you'll get a login screen. 69 00:03:02,700 --> 00:03:05,490 Now, I recommend creating an account on here 70 00:03:05,490 --> 00:03:08,790 because, trust me, it's going to be very, very useful. 71 00:03:08,790 --> 00:03:10,710 It's one of my favorite tools. 72 00:03:10,710 --> 00:03:14,910 And it allows you to save Python files just online. 73 00:03:14,910 --> 00:03:18,900 For example, once you log in and create an account, 74 00:03:18,900 --> 00:03:21,424 you can just create a new repl, 75 00:03:21,424 --> 00:03:23,880 choose the language that you wanna use. 76 00:03:23,880 --> 00:03:26,253 In our case, we wanna choose Python. 77 00:03:27,270 --> 00:03:28,743 We can name our repl. 78 00:03:30,331 --> 00:03:32,337 So, we can just call it, "heyhey." 79 00:03:34,324 --> 00:03:36,120 And we can just create our repl. 80 00:03:36,120 --> 00:03:37,470 And check it out. 81 00:03:37,470 --> 00:03:41,820 Right away we have, without ever downloading 82 00:03:41,820 --> 00:03:44,550 this Python translation service, 83 00:03:44,550 --> 00:03:46,923 we can actually start writing Python. 84 00:03:47,820 --> 00:03:49,380 Right here in our browsers. 85 00:03:49,380 --> 00:03:53,130 And this is going to work for anybody that has 86 00:03:53,130 --> 00:03:54,870 an internet connection and a browser 87 00:03:54,870 --> 00:03:59,870 because this interpreter just runs automatically here. 88 00:04:00,120 --> 00:04:03,570 And the beauty with repl is that, well, 89 00:04:03,570 --> 00:04:06,210 you can save these files, so you can have different folders. 90 00:04:06,210 --> 00:04:09,870 So, as we work through the course you can actually have 91 00:04:09,870 --> 00:04:12,810 a folder for all your Python work. 92 00:04:12,810 --> 00:04:16,769 And just have a really nice organized file structure 93 00:04:16,769 --> 00:04:20,130 that you can access anywhere you have internet connection. 94 00:04:20,130 --> 00:04:23,160 Now, if you don't wanna sign up for repl.it, 95 00:04:23,160 --> 00:04:24,600 it's completely free, 96 00:04:24,600 --> 00:04:28,080 you can also use this open source glot.io, 97 00:04:28,080 --> 00:04:30,360 which again, you go to Python 98 00:04:30,360 --> 00:04:34,080 and you're able to run Python online. 99 00:04:34,080 --> 00:04:38,640 So take your time, sign up for repl.it, 100 00:04:38,640 --> 00:04:42,510 and let's get started with our first Python program. 101 00:04:42,510 --> 00:04:43,560 I'm finally getting there. 102 00:04:43,560 --> 00:04:48,240 In the next video we're gonna write our first piece of code. 103 00:04:48,240 --> 00:04:50,280 No more waiting. It's coding time. 104 00:04:50,280 --> 00:04:52,099 So I'll see you in the next video. 105 00:04:52,099 --> 00:04:52,932 Bye-bye.