Skip to content

Commit 45f2905

Browse files
committed
Fix language tag
- Fix tag for code block so it properly displays as bash code.
1 parent 0da9ef0 commit 45f2905

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_episodes/04-reusable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ We need to go through a 2-step process before we can use them in our own program
139139
Step 1. use the `pip` command from the commandline. `pip` is installed as part of the Python install and is used to fetch the package from the Internet and install it in your Python configuration.
140140
141141
~~~
142-
> pip install <package name>
143-
{: .bash}
142+
$ pip install <package name>
144143
~~~
144+
{: .language-bash}
145145
146146
pip stands for Python install package and is a commandline function. Because we are using the Anaconda distribution of Python, all of the packages that we will be using in this lesson are already installed for us, so we can move straight on to step 2.
147147

0 commit comments

Comments
 (0)