Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MLAir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esde
machine-learning
MLAir
Commits
619aeba1
Commit
619aeba1
authored
4 years ago
by
leufen1
Browse files
Options
Downloads
Patches
Plain Diff
fixed error if requirements are as out-commented
parent
8b7e848c
No related branches found
No related tags found
4 merge requests
!164
update release branch by recent developments
,
!163
another update
,
!162
Resolve "new release v1.0.0"
,
!139
Draft: Resolve "KZ filter"
Pipeline
#47949
failed
4 years ago
Stage: test
Stage: docs
Stage: pages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+6
-6
6 additions, 6 deletions
.gitlab-ci.yml
README.md
+2
-1
2 additions, 1 deletion
README.md
with
8 additions
and
7 deletions
.gitlab-ci.yml
+
6
−
6
View file @
619aeba1
...
@@ -43,7 +43,7 @@ tests (from scratch):
...
@@ -43,7 +43,7 @@ tests (from scratch):
script
:
script
:
-
zypper --non-interactive install binutils libproj-devel gdal-devel
-
zypper --non-interactive install binutils libproj-devel gdal-devel
-
zypper --non-interactive install proj geos-devel
-
zypper --non-interactive install proj geos-devel
-
cat requirements.txt | xargs -L 1 pip install
-
cat requirements.txt |
cut -f1 -d"#" | sed '/^\s*$/d' |
xargs -L 1 pip install
-
chmod +x ./CI/run_pytest.sh
-
chmod +x ./CI/run_pytest.sh
-
./CI/run_pytest.sh
-
./CI/run_pytest.sh
after_script
:
after_script
:
...
@@ -72,7 +72,7 @@ tests (on GPU):
...
@@ -72,7 +72,7 @@ tests (on GPU):
-
chmod +x ./CI/update_badge.sh
-
chmod +x ./CI/update_badge.sh
-
./CI/update_badge.sh > /dev/null
-
./CI/update_badge.sh > /dev/null
script
:
script
:
-
cat requirements
_gpu
.txt | xargs -L 1 pip install
-
cat requirements.txt
| cut -f1 -d"#" | sed '/^\s*$/d'
| xargs -L 1 pip install
-
chmod +x ./CI/run_pytest.sh
-
chmod +x ./CI/run_pytest.sh
-
./CI/run_pytest.sh
-
./CI/run_pytest.sh
after_script
:
after_script
:
...
@@ -96,7 +96,7 @@ tests:
...
@@ -96,7 +96,7 @@ tests:
-
chmod +x ./CI/update_badge.sh
-
chmod +x ./CI/update_badge.sh
-
./CI/update_badge.sh > /dev/null
-
./CI/update_badge.sh > /dev/null
script
:
script
:
-
cat requirements.txt | xargs -L 1 pip install
-
cat requirements.txt |
cut -f1 -d"#" | sed '/^\s*$/d' |
xargs -L 1 pip install
-
chmod +x ./CI/run_pytest.sh
-
chmod +x ./CI/run_pytest.sh
-
./CI/run_pytest.sh
-
./CI/run_pytest.sh
after_script
:
after_script
:
...
@@ -120,7 +120,7 @@ coverage:
...
@@ -120,7 +120,7 @@ coverage:
-
chmod +x ./CI/update_badge.sh
-
chmod +x ./CI/update_badge.sh
-
./CI/update_badge.sh > /dev/null
-
./CI/update_badge.sh > /dev/null
script
:
script
:
-
cat requirements.txt | xargs -L 1 pip install
-
cat requirements.txt |
cut -f1 -d"#" | sed '/^\s*$/d' |
xargs -L 1 pip install
-
chmod +x ./CI/run_pytest_coverage.sh
-
chmod +x ./CI/run_pytest_coverage.sh
-
./CI/run_pytest_coverage.sh
-
./CI/run_pytest_coverage.sh
after_script
:
after_script
:
...
@@ -142,8 +142,8 @@ sphinx docs:
...
@@ -142,8 +142,8 @@ sphinx docs:
-
chmod +x ./CI/update_badge.sh
-
chmod +x ./CI/update_badge.sh
-
./CI/update_badge.sh > /dev/null
-
./CI/update_badge.sh > /dev/null
script
:
script
:
-
cat requirements.txt | xargs -L 1 pip install
-
cat requirements.txt |
cut -f1 -d"#" | sed '/^\s*$/d' |
xargs -L 1 pip install
-
cat docs/requirements_docs.txt | xargs -L 1 pip install
-
cat docs/requirements_docs.txt |
cut -f1 -d"#" | sed '/^\s*$/d' |
xargs -L 1 pip install
-
chmod +x ./CI/create_documentation.sh
-
chmod +x ./CI/create_documentation.sh
-
./CI/create_documentation.sh
-
./CI/create_documentation.sh
after_script
:
after_script
:
...
...
This diff is collapsed.
Click to expand it.
README.md
+
2
−
1
View file @
619aeba1
...
@@ -24,7 +24,8 @@ HPC systems, see [here](#special-instructions-for-installation-on-jülich-hpc-sy
...
@@ -24,7 +24,8 @@ HPC systems, see [here](#special-instructions-for-installation-on-jülich-hpc-sy
preferably in a virtual environment. You can use
`pip install -r requirements.txt`
to install all requirements at
preferably in a virtual environment. You can use
`pip install -r requirements.txt`
to install all requirements at
once. Note, we recently updated the version of Cartopy and there seems to be an ongoing
once. Note, we recently updated the version of Cartopy and there seems to be an ongoing
[
issue
](
https://github.com/SciTools/cartopy/issues/1552
)
when installing numpy and Cartopy at the same time. If you
[
issue
](
https://github.com/SciTools/cartopy/issues/1552
)
when installing numpy and Cartopy at the same time. If you
run into trouble, you could use
` cat requirements.txt | xargs -L 1 pip install`
instead.
run into trouble, you could use
`cat requirements.txt | cut -f1 -d"#" | sed '/^\s*$/d' | xargs -L 1 pip install`
instead.
*
Installation of
**MLAir**
:
*
Installation of
**MLAir**
:
*
Either clone MLAir from the
[
gitlab repository
](
https://gitlab.version.fz-juelich.de/toar/mlair.git
)
*
Either clone MLAir from the
[
gitlab repository
](
https://gitlab.version.fz-juelich.de/toar/mlair.git
)
and use it without installation (beside the requirements)
and use it without installation (beside the requirements)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment