Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoicon
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
w2w
autoicon
Commits
045ab337
Commit
045ab337
authored
2 years ago
by
Oriol Tintó Prims
Browse files
Options
Downloads
Patches
Plain Diff
Fix build_python_environment.sh.
parent
daaba7e9
No related branches found
Branches containing commit
No related tags found
1 merge request
!2
Split prepare_rundir.sh into three different stages for the whole experiment,...
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
conf/proj.yaml
+1
-0
1 addition, 0 deletions
conf/proj.yaml
templates/build_python_environment.sh
+4
-3
4 additions, 3 deletions
templates/build_python_environment.sh
with
5 additions
and
3 deletions
conf/proj.yaml
+
1
−
0
View file @
045ab337
...
@@ -9,6 +9,7 @@ icon:
...
@@ -9,6 +9,7 @@ icon:
python_environment
:
python_environment
:
folder_name
:
python_environment
folder_name
:
python_environment
requirements
:
requirements
:
-
numpy==1.23
-
enstools-compression
-
enstools-compression
# Just to try a library from a git repository.
# Just to try a library from a git repository.
-
https://gitlab.physik.uni-muenchen.de/Oriol.Tinto/otils.git
-
https://gitlab.physik.uni-muenchen.de/Oriol.Tinto/otils.git
...
...
This diff is collapsed.
Click to expand it.
templates/build_python_environment.sh
+
4
−
3
View file @
045ab337
...
@@ -53,11 +53,12 @@ ln -sf $(which python3) ${WORKDIR}/python3
...
@@ -53,11 +53,12 @@ ln -sf $(which python3) ${WORKDIR}/python3
# Install the requirements via pip
# Install the requirements via pip
# TODO: Due to a incompatibility issue between latest numba and numpy I have to add this here. Hopefully removable soon.
# TODO: Due to a incompatibility issue between latest numba and numpy I have to add this here. Hopefully removable soon.
requirements
=
%python_environment.requirements%
requirements
=
"
%python_environment.requirements%
"
echo
${
requirements
}
# Convert list with python format to a bash array
requirements
=(
$(
echo
${
requirements
}
|
tr
-d
'[],'
)
)
# Install requirements.
# Install requirements.
for
requirement
in
${
requirements
}
;
do
for
requirement
in
${
requirements
[@]
}
;
do
python
-m
pip
install
${
requirement
}
python
-m
pip
install
${
requirement
}
done
done
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