1 00:00:02,280 --> 00:00:02,880 Hi guys. 2 00:00:02,880 --> 00:00:03,800 Welcome to this session. 3 00:00:03,800 --> 00:00:07,360 So in this session we'll see how we can install the OpenAI library. 4 00:00:07,640 --> 00:00:10,080 So for this there are a couple of steps which we have to take. 5 00:00:10,200 --> 00:00:16,080 So the first thing we have to make sure that we have installed is either Visual Studio Code or Python 6 00:00:16,080 --> 00:00:17,480 or Jupyter on our system. 7 00:00:17,760 --> 00:00:21,680 Once that is done, then we are going to install the libraries which we need. 8 00:00:21,720 --> 00:00:25,880 So the first we are going to run Python m pip install OpenAI. 9 00:00:25,880 --> 00:00:27,880 So we're going to install OpenAI. 10 00:00:28,320 --> 00:00:31,040 Then we are going to install Python dot m. 11 00:00:31,440 --> 00:00:35,520 We can check our versions which uh the import OpenAI. 12 00:00:36,000 --> 00:00:41,200 And we can print the OpenAI version so that we can check which version of OpenAI is getting installed. 13 00:00:41,720 --> 00:00:46,680 And then we can set our API key as environment variable. 14 00:00:47,120 --> 00:00:52,600 So these are the steps which we are going to apply to install our OpenAI library first. 15 00:00:52,600 --> 00:00:55,240 And then we can start working on the platform.