-
-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
_episodes/03-packaging-installing.md: moving Pip section. #79
base: gh-pages
Are you sure you want to change the base?
Conversation
_episodes/03-packaging-installing.md
Outdated
@@ -52,7 +52,7 @@ Keep motivation as easing in and gradually scaling up to stay inclusive --> | |||
|
|||
## Pip | |||
|
|||
Pip is the most common package manager for python. Pip allows you to easily install python packages locally from your computer or from an online repository like the [Python Package Index (PyPI)](https://pypi.org/). Once a package is installed with pip, you can `import` that package and use it in your own code. | |||
Pip is the most common package manager for Python. Pip allows you to easily install Python packages locally from your computer or from an online repository like the [Python Package Index (PyPI)](https://pypi.org/). Once a package is installed with pip, you can `import` that package and use it in your own code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this in two places right now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My bad, that was a bit of an imperfect merge. I pushed ffb1ff7 that fixes it.
changes to the package without re-installing it. Analysis code can change dramatically over time, so this is a | ||
useful option! | ||
|
||
## Pip | ||
|
||
Pip is the most common package manager for python. Pip allows you to easily install python packages locally from your computer or from an online repository like the [Python Package Index (PyPI)](https://pypi.org/). Once a package is installed with pip, you can `import` that package and use it in your own code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pypi is mentioned above when introducing setup.py
I think that's why i initially had this section where it is currently
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for noticing this.
I pushed a5be1e3 that edits the phrasing to properly introduce Pip.
…hrasing. - Code review for carpentries-incubator#79. - Move the 'Relative file paths' callout block. - Edit phrasing to properly introduce Pip.
Related to #77.
Summary of changes:
Edit: I also cherry-picked 041a952 into this branch to prevent conflicts.
Best,
Vini