1. Install from Wheels#

restoreio offers Python wheels for a variety of operating systems and Python versions. These wheels are available on both PyPI and Anaconda Cloud, providing a convenient way to install the package using either pip or conda.

1.1. Install with pip#

pypi

First, ensure that you have pip installed

python -m ensurepip --upgrade

For further detail on installing pip, refer to pip installation documentation.

To install restoreio and its Python dependencies using pip by

python -m pip install --upgrade pip
python -m pip install restoreio

If you are using PyPy instead of Python, you can first ensure pip is installed by

pypy -m ensurepip --upgrade

Next, you can install restoreio as follows:

pypy -m pip install --upgrade pip
pypy -m pip install restoreio

1.2. Install with conda#

conda-version

Alternatively, you can install restoreio via conda. To do so, you may refer to the conda instalation documentation to set up conda on your system. Once conda is ready, you can install restoreio along with its Python dependencies by using the following command

conda install -c s-ameli -c conda-forge restoreio -y