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

How to install sputr via python pip




sputr - Simple Python Unit Test Runner, it belongs to Classifiers:

- Programming Language :: Python :: 3.3
- Topic :: Software Development :: Testing

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



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_sputr_env

- Active the virtual environment

test_sputr_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_sputr_env

- Active the virtual environment

source test_sputr_env/bin/active


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

To install sputr on Windows(CMD):

py -m pip install sputr

To install sputr on Unix/macOs:

pip install sputr


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

Example:

pip install sputr==0.1


Please see the version list below table:

VersionReleased dateCommand
sputr 1.1.02017-09-26T13:29:21Windows:

py -m pip install sputr==1.1.0

Unix/macOs:

pip install sputr==1.1.0

sputr 1.0.112017-02-13T04:26:30Windows:

py -m pip install sputr==1.0.11

Unix/macOs:

pip install sputr==1.0.11

sputr 1.0.102017-02-11T03:01:58Windows:

py -m pip install sputr==1.0.10

Unix/macOs:

pip install sputr==1.0.10

sputr 1.0.92017-02-09T05:50:45Windows:

py -m pip install sputr==1.0.9

Unix/macOs:

pip install sputr==1.0.9

sputr 1.0.82017-02-08T03:01:52Windows:

py -m pip install sputr==1.0.8

Unix/macOs:

pip install sputr==1.0.8

sputr 1.0.72017-02-07T02:22:19Windows:

py -m pip install sputr==1.0.7

Unix/macOs:

pip install sputr==1.0.7

sputr 1.0.42017-01-24T06:37:14Windows:

py -m pip install sputr==1.0.4

Unix/macOs:

pip install sputr==1.0.4

sputr 1.0.32017-01-20T02:40:43Windows:

py -m pip install sputr==1.0.3

Unix/macOs:

pip install sputr==1.0.3

sputr 1.0.22017-01-20T02:28:09Windows:

py -m pip install sputr==1.0.2

Unix/macOs:

pip install sputr==1.0.2

sputr 1.0.12017-01-19T06:42:25Windows:

py -m pip install sputr==1.0.1

Unix/macOs:

pip install sputr==1.0.1

sputr 0.12017-09-26T13:28:17Windows:

py -m pip install sputr==0.1

Unix/macOs:

pip install sputr==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sputr_downloaded_file>

On Unix/macOs:

pip install <path_to_sputr_downloaded_file>


List distribution:


Project link:

- Homepage