Skip to content

Commit

Permalink
added openssl docs
Browse files Browse the repository at this point in the history
  • Loading branch information
comane committed Nov 22, 2023
1 parent 317a1b2 commit 1c6b418
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,20 @@ and that will also require a development installation of ``pineappl`` which requ
- ``pkg-config``
- ``openssl`` (e.g. on Debian available in the ``libssl-dev`` package)

Note that if ``openssl`` is not present in your system, you can either try to install it with conda (if you are in a conda environment), or you can install it from source as following

.. code-block:: sh
wget https://www.openssl.org/source/openssl-X.Y.Zk.tar.gz
tar -zxvf openssl-X.Y.Zk.tar.gz
cd openssl-X.Y.Zk
./config --prefix=$HOME/local --openssldir=$HOME/local/openssl
make
make install
after which you will need to add the folder containing `openssl.pc` (`libssl.pc`) to your `PKG_CONFIG_PATH` environment variable.


Configure paths
Expand Down

0 comments on commit 1c6b418

Please sign in to comment.