Giter Club home page Giter Club logo

adasay's Introduction

AdaSay

This repository gives us a chance to practice using git and virtual environments. We will take a small program and practice how we can manage its dependencies using a virtual environment. We'll also practice forking and cloning a repository, as well as making a commit and pushing changes.

Forking and Cloning the Repository

  1. To start, we want make our own copy of the GitHub repository to work with. We do this by forking the repository. Click the Fork button on GitHub. This new repository copy will be owned by your GitHub account.

Screenshot showing fork button on top right of GitHub page

  1. Next, we want to copy the code from GitHub down to our computer. We will do this by cloning the code. Click the green Code Button, then copy the URL from the dropdown that appears.

Screenshot showing code button and URL to copy

  1. Open a terminal on your computer, and navigate to the directory where you wish to copy this exercise's code to. Once you are in the desired directory, run this command, using the URL you copied in the previous step:

git clone YOUR_REPO_URL

  1. After the repository is copied, move into the repository directory.

cd AdaSay

Create a Virtual Environment and Install Dependencies

  1. The AdaSay project requires the cowsay package to run. We want to install this dependency in a virtual environment so that it is used only for this project. We first run the following command to create a virtaul environment:

python3 -m venv venv

  1. This will create a new folder named venv which will hold all the information about our virtual environment. Verify that this folder was created by running ls and seeing that venv is one of the folders present.

  2. We now need to activate the virtual environment. Everything else up to this point was one-time setup, but we will need to repeat this step each time we open a new terminal to interact with this project. We activate the virtual environment by running the activation script in the venv folder.

source venv/bin/activate

  1. Verify that the virtual environment has been activated. If (venv) appears at the front of your shell prompt, you have successfully activated the environment.

  2. Next, we want to install all the requirements. This projects specifies the what packages it needs in the requirements.txt file. We use pip to read this file and install the needed dependencies:

pip install -r requirements.txt

  1. Now that the requirements are installed, we're ready to try running our program. Run the following command (in a terminal that has the virtual environment activated) and see if we get a cow outputted:

python main.py

Make and Commit Changes

  1. Right now the cow doesn't say anything interesting. Let's change that! Start by opening VS Code in the AdaSay directory.

code .

  1. Edit main.py to make the cow say something interesting. Make sure to save the file in VS Code after you make your change!

  2. Verify that your changes work by running main.py again. (Note: if you use the terminal inside VS Code, you may need to activate the virtual environment on that new terminal. See step 7.)

python main.py

  1. Once you're satisfied with your changes double-check which files have been changed.

git status

  1. You should expect to see that only main.py was changed. We'll now stage this for our commit.

git add main.py

  1. Check the status of the files again. You should see that main.py is now shown in green, indicating that it will be part of our commit.

git status

  1. Commit the changes. Add some meaningful commit message that describes the changes you made. (Hint: do not use exclamation marks in your commit message)

git commit -m "Changed cow message to COWABUNGA"

  1. Push the changes to GitHub. If asked for a username and password, use your GitHub username and your Personal Access Token (PAT).

git push origin

  1. Check that the changes are reflected in GitHub. Refresh the GitHub page in your browser and see that your new change is present in main.py.

  2. BONUS: do some searching online to figure out how to have cowsay use a dragon instead of a cow. Modify your code to use the dragon, stage your changes, make a commit, and push the commit to GitHub.

  3. Once you're finished working on this exercise, deactivate the virtual environment.

deactivate

adasay's People

Contributors

olenarostotskyy avatar alope107 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.