Flask Demo

Clone this Repo from your laptops. https://github.com/gchandra10/flask_demo

If you don't have GIT installed, follow these steps. If you already have it, skip to the cloning part

For Both Windows and Mac:

  1. Install Git:

    • Windows: Download and install Git from git-scm.com

    • Mac: Install Git using Homebrew by typing brew install git in the Terminal. If you don't have Homebrew, you can download Git from git-scm.com.

  2. Open Terminal or Command Prompt:

    • Windows: Open Command Prompt (search for 'cmd' in the Start menu).

    • Mac: Open Terminal (you can find it using Spotlight with Cmd + Space and then type "Terminal").

  3. Navigate to the Directory where you want the cloned repository:

    • Use the cd command to change directories. For example, cd Documents/Projects.

  4. Clone the Repository:

    • Use the command git clone [URL].

    • Replace [URL] with the URL of the Git repository you want to clone. You can get this URL by going to the repository page on GitHub (or another Git hosting service) and clicking the "Clone or download" button.

Example:

cd Documents/Projects
git clone https://github.com/gchandra10/flask_demo.git

After running these commands, you should have a copy of the repository in your specified directory.

Additional Tips:

  • Check Git Installation: You can check if Git is installed by typing git --version in your Command Prompt or Terminal.

Last updated