Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install crestic via python pip




crestic - Configurable restic, it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- Intended Audience :: System Administrators
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: POSIX :: BSD
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: Implementation :: CPython
- Topic :: System
- Topic :: System :: Archiving
- Topic :: System :: Archiving :: Backup

When you know about this project and you want to new install crestic to support your project or you get trouble as ModuleNotFoundError: No module named "crestic" or ImportError: cannot import name "crestic" in your project, let follow this tutorial to install crestic



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_crestic_env

- Active the virtual environment

test_crestic_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_crestic_env

- Active the virtual environment

source test_crestic_env/bin/active


Step 2: OK, now, let flow below content to start the installation crestic

To install crestic on Windows(CMD):

py -m pip install crestic

To install crestic on Unix/macOs:

pip install crestic


Step 3: If you want to install a specific crestic version, add ==<crestic version> to the end command line

Example:

pip install crestic==0.4.1


Please see the version list below table:

VersionReleased dateCommand
crestic 0.6.02021-09-05T06:06:32Windows:

py -m pip install crestic==0.6.0

Unix/macOs:

pip install crestic==0.6.0

crestic 0.5.02020-05-24T10:43:47Windows:

py -m pip install crestic==0.5.0

Unix/macOs:

pip install crestic==0.5.0

crestic 0.4.12020-05-24T10:00:03Windows:

py -m pip install crestic==0.4.1

Unix/macOs:

pip install crestic==0.4.1


Step 4: Otherwise, you can install crestic from local archives:

Download the distribution file from crestic-0.6.0.tar.gz or the specific crestic version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_crestic_downloaded_file>

On Unix/macOs:

pip install <path_to_crestic_downloaded_file>


List distribution:

- crestic-0.4.1-py3-none-any.whl
- crestic-0.4.1.tar.gz
- crestic-0.5.0-py3-none-any.whl (python version >=3.6)
- crestic-0.5.0.tar.gz (python version >=3.6)
- crestic-0.6.0-py3-none-any.whl (python version >=3.6)
- crestic-0.6.0.tar.gz (python version >=3.6)


Project link:

- Homepage
- Circle CI
- Crestic source