Project Installation Instructions - MDEllis73/mywebclass-simulation GitHub Wiki

Back to the Readme

Installing Node.js and Git - Windows

  1. Download the Node.js installer for Windows from the official Node.js website.
  2. Run the downloaded installer and follow the installation wizard prompts. Make sure to accept the default settings unless you have a specific reason to change them.
  3. Download the Git installer for Windows from the official Git website.
  4. Run the downloaded installer and follow the installation wizard prompts. Again, make sure to accept the default settings unless you have a specific reason to change them.
  5. Once the installation is complete, open the Command Prompt or PowerShell and enter the following commands to verify that both Node.js and Git are installed correctly:

node-v git --version

If you see the version numbers for both Node.js and Git, you have successfully installed them on your Windows machine.

Installing Node.js and Git - macOS

  1. Open the Terminal app on your Mac.
  2. Install Homebrew by entering the following command in the Terminal:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

  1. Once Homebrew is installed, enter the following command in the Terminal to install Node.js: brew install node

  2. Next, install Git by entering the following command in the Terminal:

brew install git

  1. Once the installation is complete, enter the following commands in the Terminal to verify that both Node.js and Git are installed correctly:

node -v git --version

If you see the version numbers for both Node.js and Git, you have successfully installed them on your macOS machine.

Installing PyCharm on Windows and macOS

  1. Download the PyCharm installer for your operating system from the official JetBrains website: https://www.jetbrains.com/pycharm/download/.
  2. Run the downloaded installer and follow the installation wizard prompts. Make sure to accept the default settings unless you have a specific reason to change them.
  3. Once the installation is complete, open PyCharm and create a new project.

Cloning a GitHub Repository into PyCharm

  1. Open PyCharm and click on "Check out from Version Control" on the welcome screen or select "VCS" > "Get from Version Control" from the menu bar.
  2. In the "Get from Version Control" dialog box, select "Git" as the version control system.
  3. Enter the URL of the GitHub repository you want to clone into PyCharm.
  4. Choose a directory on your local machine where you want to save the repository.
  5. Click "Clone" to begin the cloning process.
  6. Once the cloning is complete, PyCharm will open the project and you can start working on it.

That's it! You should now be able to install Node.js and Git on your Windows or macOS machine, install PyCharm, and clone a GitHub repository into PyCharm. Let me know if you have any questions or run into any issues.