Skip to content

Commit d52ef19

Browse files
lwasserwillingc
andcommitted
Fix: edits from @willingc
Co-authored-by: Carol Willing <carolcode@willingconsulting.com> Update tutorials/1-installable-code.md Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
1 parent 5fcc91b commit d52ef19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/1-installable-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A basic installable package needs a few things: code, a specific package structu
2323

2424
In this lesson you will learn:
2525

26-
- How to make your code installable into a Python environment
26+
- How to make your code pip-installable into a Python environment
2727
- How to create a basic `pyproject.toml` file to declare dependencies and metadata
2828
- How to declare a build backend which will be used to build and install your package (learn more about what build back ends are here - link to guide)
2929
- How to install your package in editable mode for interactive development
@@ -43,7 +43,7 @@ you are a scientist, we suggest that you use `conda`.
4343

4444
<img src="../images/tutorials/environment-package-install.png" alt="This diagram has two smaller boxes with arrows pointing to the right to a python environment. The small boxes read your-package and pip install package. The environment box on the right reads - your python environment. It them lists your-package along with a few other core packages such as matplotlib, numpy, pandas, xarray and geopandas." width="700px">
4545

46-
Making your code pip installable is the first step towards creating a Python package. Once it is pip installable, you can add it to any Python environment on your computer and import that package in the same way that you might import a package such as `Pandas` or `Geopandas`.
46+
Making your source code pip-installable is the first step towards creating a Python package. Once your code is pip-installable, it is a Python package and can be added to any Python environment on your computer and imported in the same way that you might import a package such as `Pandas` or `Geopandas`.
4747
:::
4848

4949
## Make a basic Python package

0 commit comments

Comments
 (0)