/rock-paper-scissors-exercise

A game of rock paper scissors

Primary LanguagePythonMIT LicenseMIT

rock-paper-scissors-exercise

A game of rock paper scissors

##Enviornment setup Create and activate a new Anaconda virtual environment:

conda create -n game-env python=3.7 # (first time only)
conda activate game-env

From within the virtual environment, install the pytest package:

NOTE: we won't need pytest until/unless addressing the optional "Automated Testing" challenge, so you can feel free to skip this now and return later...

pip install pytest

From within the virtual environment, demonstrate your ability to run the Python script from the command-line:

python game.py