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

How to install nimbstor via python pip




nimbstor - Store incrementally, compressed and encrypted data failsafe in filesystems, sFTP, WebDAV, IMAP or other backends., it belongs to Classifiers:

- Development Status :: 4 - Beta
- Environment :: Console
- Intended Audience :: End Users/Desktop
- Intended Audience :: System Administrators
- Operating System :: POSIX
- Operating System :: Unix
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Topic :: System
- Topic :: System :: Archiving
- Topic :: System :: Archiving :: Backup
- Topic :: System :: Archiving :: Compression
- Topic :: System :: Archiving :: Mirroring
- Topic :: System :: Archiving :: Packaging
- Topic :: Utilities

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



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_nimbstor_env

- Active the virtual environment

test_nimbstor_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_nimbstor_env

- Active the virtual environment

source test_nimbstor_env/bin/active


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

To install nimbstor on Windows(CMD):

py -m pip install nimbstor

To install nimbstor on Unix/macOs:

pip install nimbstor


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

Example:

pip install nimbstor==0.1


Please see the version list below table:

VersionReleased dateCommand
nimbstor 1.0.12012-03-18T10:24:27Windows:

py -m pip install nimbstor==1.0.1

Unix/macOs:

pip install nimbstor==1.0.1

nimbstor 0.4.22010-12-02T14:29:42Windows:

py -m pip install nimbstor==0.4.2

Unix/macOs:

pip install nimbstor==0.4.2

nimbstor 0.4.12010-11-29T10:07:03Windows:

py -m pip install nimbstor==0.4.1

Unix/macOs:

pip install nimbstor==0.4.1

nimbstor 0.42010-11-26T15:54:16Windows:

py -m pip install nimbstor==0.4

Unix/macOs:

pip install nimbstor==0.4

nimbstor 0.32010-11-24T15:21:58Windows:

py -m pip install nimbstor==0.3

Unix/macOs:

pip install nimbstor==0.3

nimbstor 0.22010-11-23T14:52:14Windows:

py -m pip install nimbstor==0.2

Unix/macOs:

pip install nimbstor==0.2

nimbstor 0.12010-11-22T21:16:49Windows:

py -m pip install nimbstor==0.1

Unix/macOs:

pip install nimbstor==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_nimbstor_downloaded_file>

On Unix/macOs:

pip install <path_to_nimbstor_downloaded_file>


List distribution:

- nimbstor-0.1.tar.gz
- nimbstor-0.2.tar.gz
- nimbstor-0.3.tar.gz
- nimbstor-0.4.tar.gz
- nimbstor-0.4.1.tar.gz
- nimbstor-0.4.2.tar.gz
- nimbstor-1.0.1-pre1.tar.gz
- nimbstor-1.0.1.tar.gz


Project link:

- Homepage