-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Generative AI Foundations in Python
By :

We begin by making sure we can connect to a production environment remotely. We can leverage an IDE, which is software that enables us to easily organize code and remotely connect to the production environment.
Begin by installing Visual Studio Code (VS Code), a free code editor by Microsoft. It is preferred for its integrated Git control, terminal, and marketplace for extensions that enhance its functionality. It provides a conducive environment for writing, testing, and debugging code.
Next, we set up a structured project directory to keep the code modular and organized. We will also initialize our working directory with Git, which enables us to synchronize code with a remote repository. As mentioned, we leverage Git to keep track of code changes and collaborate with others more seamlessly. Using the terminal window in Visual Studio, we can initialize the project using three simple commands. We use mkdir...