Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 971 Bytes

INSTALL.md

File metadata and controls

18 lines (13 loc) · 971 Bytes

Installing the RO-Crate library

This library is written for Python 3.6 and later.

  • In order to install the dependencies you need pip and venv modules.

    • pip is available in many Linux distributions (Ubuntu packages python3-pip, CentOS EPEL package python-pip), and also as pip Python package.
    • venv is also available in many Linux distributions (Ubuntu package python3-venv). In some of them is integrated into the Python 3.5 (or later) installation.
  • The creation of a virtual environment where to install WfExS backend dependencies is done running:

python3 -m venv .pyROenv
source .pyROenv/bin/activate
pip install --upgrade pip wheel
pip install -r requirements.txt
  • If you upgrade your Python installation (from version 3.6 to 3.7, for instance), or you move this folder to a different location after following this instructions, you may need to remove and reinstall the virtual environment.