Commit 3474fbe03875c1496f84571598caa969c77f4a7b
1 parent
a3d6c07f
Exists in
dev
added commentaires
Showing
2 changed files
with
3 additions
and
1 deletions
Show diff stats
Dockerfile
... | ... | @@ -182,6 +182,8 @@ RUN pip install --user pip-tools |
182 | 182 | |
183 | 183 | # Installing packages required for Guitastro |
184 | 184 | RUN pip install --user -r ./vendor/guitastro/install/requirements.txt |
185 | +# Maybe unnecessary because same requirements as for pyros requirements_dev (?) | |
186 | +#RUN pip install --user -r ./vendor/guitastro/install/requirements_dev.txt | |
185 | 187 | |
186 | 188 | # Installing packages required for PyROS |
187 | 189 | RUN pip install --user -r ./install/requirements.txt | ... | ... |
pyros.py
... | ... | @@ -587,8 +587,8 @@ def install_or_update(UPDATE: bool = False, with_packages: bool = True, with_dat |
587 | 587 | if UPDATE: |
588 | 588 | print("Running UPDATE command") |
589 | 589 | else: |
590 | + # Install GitPython package for git support inside python | |
590 | 591 | print("Running INSTALL command") |
591 | - # Git clone Guitastro if not already cloned: | |
592 | 592 | try: |
593 | 593 | from git import Repo |
594 | 594 | except: | ... | ... |