Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
AliESD_Example
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ALICE-open-data
AliESD_Example
Commits
f1bcd2a8
Commit
f1bcd2a8
authored
Apr 27, 2020
by
Lucas Mello Schnorr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deps
parent
842890d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
130 additions
and
0 deletions
+130
-0
LabBook.org
LabBook.org
+130
-0
No files found.
LabBook.org
View file @
f1bcd2a8
...
...
@@ -493,3 +493,133 @@ popd
#+END_SRC
* 2019-11-22 Drafting a reproducible workflow
* 2020-04-27 Reinstall tupi2
** 1. Install alibuild
Original instructions from here:
https://alice-doc.github.io/alice-analysis-tutorial/building/custom.html
In my box:
#+begin_src bash :results output :session :exports both
export PYTHONUSERBASE="/SSD2/schnorr/New_2020/python/"
export PATH="$PYTHONUSERBASE/bin:$PATH"
rm -rf $PYTHONUSERBASE
pip install alibuild --upgrade --user
#+END_SRC
** 2. Initialize AliPhysics
#+begin_src bash :results output :session :exports both
export PYTHONUSERBASE="/SSD2/schnorr/New_2020/python/"
export PATH="$PYTHONUSERBASE/bin:$PATH"
BASE=/SSD2/schnorr/New_2020/ALICE/
mkdir -p $BASE
pushd $BASE
aliBuild init AliPhysics@master
popd
#+END_SRC
** 3. Verify dependencies
Make sure aliDoctor reports no "ERROR" messages.
#+begin_src bash :results output :session :exports both
export PYTHONUSERBASE="/SSD2/schnorr/New_2020/python/"
export PATH="$PYTHONUSERBASE/bin:$PATH"
aliDoctor AliPhysics
#+END_SRC
In my relatively fresh Debian box, I had to install:
#+begin_src shell :results output
sudo apt install libglu1-mesa-dev libperl-dev libxpm-dev libxext-dev libx11-dev libxft-dev libgsl-dev
sudo apt install libssl-dev
sudo apt install cmake autoconf automake autopoint texinfo gettext libtool libtool-bin pkg-config swig
sudo apt install libczmq-dev libyaml-cpp-dev
sudo apt install libz4-dev
sudo apt install libfreetype6-dev
sudo apt install curl libcurl4-gnutls-dev build-essential gfortran cmake xorg-dev libglu1-mesa-dev libfftw3-dev libxml2-dev git unzip autoconf automake autopoint texinfo gettext libtool libtool-bin pkg-config bison flex libperl-dev libbz2-dev swig liblzma-dev libnanomsg-dev libyaml-cpp-dev rsync lsb-release unzip environment-modules libglfw3-dev
sudo apt install libfabric-dev
#+end_src
** 4. (optional) Deinstall dependencies
#+begin_src shell :results output
sudo apt purge \
libglu1-mesa-dev \
libperl-dev \
libxpm-dev \
libxext-dev \
libx11-dev \
libxft-dev \
libgsl-dev \
libssl-dev \
libczmq-dev libyaml-cpp-dev \
libfreetype6-dev \
libcurl4-gnutls-dev \
xorg-dev \
libglu1-mesa-dev \
libfftw3-dev \
libxml2-dev \
autoconf automake autopoint \
texinfo gettext libtool libtool-bin \
pkg-config \
bison flex \
libperl-dev \
libbz2-dev \
liblzma-dev \
libnanomsg-dev \
libyaml-cpp-dev \
environment-modules libglfw3-dev \
libfabric-dev
#+end_src
** 5. Reinstall only the bare minimum
#+begin_src shell :results output
sudo apt install \
libglu1-mesa-dev \
libbz2-dev \
liblzma-dev \
curl \
libcurl4-gnutls-dev \
libxpm-dev libxext-dev libx11-dev libxft-dev
#+end_src
For a more complete installation
#+begin_src shell :results output
sudo apt install \
libglu1-mesa-dev \
libperl-dev \
libxpm-dev \
libxext-dev \
libx11-dev \
libxft-dev \
libgsl-dev \
libssl-dev \
libczmq-dev libyaml-cpp-dev \
libfreetype6-dev \
xorg-dev \
libglu1-mesa-dev \
libfftw3-dev \
libxml2-dev \
autoconf automake autopoint \
texinfo gettext libtool libtool-bin \
pkg-config \
bison flex \
libperl-dev \
libbz2-dev \
liblzma-dev \
libnanomsg-dev \
libyaml-cpp-dev \
environment-modules libglfw3-dev \
libfabric-dev
#+end_src
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment