Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor 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
calibration
pycalibration
Commits
4bea16ad
Commit
4bea16ad
authored
3 years ago
by
Robert Rosca
Browse files
Options
Downloads
Patches
Plain Diff
Update notes on venv installation
parent
06f3c810
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.rst
+25
-5
25 additions, 5 deletions
README.rst
with
25 additions
and
5 deletions
README.rst
+
25
−
5
View file @
4bea16ad
...
@@ -24,8 +24,25 @@ GitLab`_ for instructions on how to do this .
...
@@ -24,8 +24,25 @@ GitLab`_ for instructions on how to do this .
Installation using python virtual environment - recommended
Installation using python virtual environment - recommended
===========================================================
===========================================================
`pycalibration` uses the same version of Python as Karabo, which in June 2021
updated to use Python 3.8. Currently the default python installation on Maxwell
is still Python 3.6.8, so Python 3.8 needs to be loaded from a different
location.
One option is to use the Maxwell Spack installation, running `module load
maxwell` will activate the test Spack instance from DESY, then you can use
`module load python-3.8.6-gcc-10.2.0-622qtxd` to Python 3.8. Note that this Spack
instance is currently a trial phase and may not be stable.
Another option is to use `pyenv`, we provide a pyenv installation at
`/gpfs/exfel/sw/calsoft/.pyenv` which we use to manage different versions of
python. This can be activated with ``source /gpfs/exfel/sw/calsoft/.pyenv/bin/activate``
A quick setup would be:
0. ``source /gpfs/exfel/sw/calsoft/.pyenv/bin/activate``
1. ``git clone ssh://git@git.xfel.eu:10022/detectors/pycalibration.git && cd pycalibration`` - clone the offline calibration package from EuXFEL GitLab
1. ``git clone ssh://git@git.xfel.eu:10022/detectors/pycalibration.git && cd pycalibration`` - clone the offline calibration package from EuXFEL GitLab
2. ``
module load anaconda/3`` - load the anaconda/3 environment
2. ``
pyenv shell 3.8.11`` - load required version of python
3. ``python3 -m venv .venv`` - create the virtual environment
3. ``python3 -m venv .venv`` - create the virtual environment
4. ``source .venv/bin/activate`` - activate the virtual environment
4. ``source .venv/bin/activate`` - activate the virtual environment
5. ``python3 -m pip install --upgrade pip`` - upgrade version of pip
5. ``python3 -m pip install --upgrade pip`` - upgrade version of pip
...
@@ -35,9 +52,10 @@ Copy/paste script:
...
@@ -35,9 +52,10 @@ Copy/paste script:
.. code::
.. code::
source /gpfs/exfel/sw/calsoft/.pyenv/bin/activate
git clone ssh://git@git.xfel.eu:10022/detectors/pycalibration.git
git clone ssh://git@git.xfel.eu:10022/detectors/pycalibration.git
cd pycalibration
cd pycalibration
module load anaconda/3
pyenv shell 3.8.11
python3 -m venv .venv
python3 -m venv .venv
source .venv/bin/activate
source .venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pip
...
@@ -49,12 +67,13 @@ Installation into user home directory
...
@@ -49,12 +67,13 @@ Installation into user home directory
This is not recommended as `pycalibration` has pinned dependencies for
This is not recommended as `pycalibration` has pinned dependencies for
stability, if you install it directly into you users home environment then it
stability, if you install it directly into you users home environment then it
will down/upgrade your local packages, which may cause major issues and may
will down
grade
/upgrade your local packages, which may cause major issues and may
**break your local environment**, it is highly recommended to use the venv
**break your local environment**, it is highly recommended to use the venv
installation method instead.
installation method instead.
0. ``source /gpfs/exfel/sw/calsoft/.pyenv/bin/activate``
1. ``git clone ssh://git@git.xfel.eu:10022/detectors/pycalibration.git && cd pycalibration`` - clone the offline calibration package from EuXFEL GitLab
1. ``git clone ssh://git@git.xfel.eu:10022/detectors/pycalibration.git && cd pycalibration`` - clone the offline calibration package from EuXFEL GitLab
2. ``
module load anaconda/3`` - load the anaconda/3 environment. If installing into other python environments, this step can be skipped
2. ``
pyenv shell 3.8.11`` - load required version of python
3. ``pip install .`` - install the pycalibration package (add ``-e`` flag for editable development installation)
3. ``pip install .`` - install the pycalibration package (add ``-e`` flag for editable development installation)
4. ``export PATH=$HOME/.local/bin:$PATH`` - make sure that the home directory is in the PATH environment variable
4. ``export PATH=$HOME/.local/bin:$PATH`` - make sure that the home directory is in the PATH environment variable
...
@@ -62,9 +81,10 @@ Copy/paste script:
...
@@ -62,9 +81,10 @@ Copy/paste script:
.. code::
.. code::
source /gpfs/exfel/sw/calsoft/.pyenv/bin/activate
git clone ssh://git@git.xfel.eu:10022/detectors/pycalibration.git
git clone ssh://git@git.xfel.eu:10022/detectors/pycalibration.git
pyenv shell 3.8.11
cd pycalibration
cd pycalibration
module load anaconda/3
pip install --user . # `-e` flag for editable install, e.g. `pip install -e .`
pip install --user . # `-e` flag for editable install, e.g. `pip install -e .`
export PATH=$HOME/.local/bin:$PATH
export PATH=$HOME/.local/bin:$PATH
...
...
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