You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Try to install it by running pip install -e . where the setup.py (or setup.cfg)is.
Go to a different directory, run python -c "import sagittal_average" and see whether the installation worked.
Check you can use the entry point from anywhere, by calling sagittal_average_run <path/to/input/csv> from the different directory.
Share your solution as a pull request to Charlene's repository mentioning this issue (by including the text Addresses UCL-COMP0233-22-23/RSE-Classwork#45 in the pull request description), remember to mention your team members too! (with @github_username)
Help Charlene run a command in her latest package (#44) from anywhere. You can do so by adding an entry point following the instructions below.
Choose who in your team is writing now! (make sure you've pulled from your colleague's fork!)
Move the
if __name__ == "__main__":
block to its own file (e.g.,command.py
) and add it as entry point tosetup.py
called "sagittal_average_run" (or tosetup.cfg
).Add the dependencies of this library as requirements to
setup.py
orsetup.cfg
.Try to install it by running
pip install -e .
where thesetup.py
(orsetup.cfg
)is.Go to a different directory, run
python -c "import sagittal_average"
and see whether the installation worked.Check you can use the entry point from anywhere, by calling
sagittal_average_run <path/to/input/csv>
from the different directory.Share your solution as a pull request to Charlene's repository mentioning this issue (by including the text
Addresses UCL-COMP0233-22-23/RSE-Classwork#45
in the pull request description), remember to mention your team members too! (with@github_username
)Sample solution:
UCL-COMP0233-2022-2023/sagittal_average#4
The text was updated successfully, but these errors were encountered: