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

How to install testcontainers-on-whales via python pip




testcontainers-on-whales - A library that provides lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a container., it belongs to Classifiers:

- Topic :: Software Development :: Build Tools

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



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_testcontainers-on-whales_env

- Active the virtual environment

test_testcontainers-on-whales_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_testcontainers-on-whales_env

- Active the virtual environment

source test_testcontainers-on-whales_env/bin/active


Step 2: OK, now, let flow below content to start the installation testcontainers-on-whales

To install testcontainers-on-whales on Windows(CMD):

py -m pip install testcontainers-on-whales

To install testcontainers-on-whales on Unix/macOs:

pip install testcontainers-on-whales


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

Example:

pip install testcontainers-on-whales==0.0.1


Please see the version list below table:

VersionReleased dateCommand
testcontainers-on-whales 0.3.02022-08-07T18:59:11Windows:

py -m pip install testcontainers-on-whales==0.3.0

Unix/macOs:

pip install testcontainers-on-whales==0.3.0

testcontainers-on-whales 0.2.32022-08-07T15:36:01Windows:

py -m pip install testcontainers-on-whales==0.2.3

Unix/macOs:

pip install testcontainers-on-whales==0.2.3

testcontainers-on-whales 0.2.22022-08-07T14:04:19Windows:

py -m pip install testcontainers-on-whales==0.2.2

Unix/macOs:

pip install testcontainers-on-whales==0.2.2

testcontainers-on-whales 0.2.12022-08-07T10:31:39Windows:

py -m pip install testcontainers-on-whales==0.2.1

Unix/macOs:

pip install testcontainers-on-whales==0.2.1

testcontainers-on-whales 0.1.02022-08-06T14:38:01Windows:

py -m pip install testcontainers-on-whales==0.1.0

Unix/macOs:

pip install testcontainers-on-whales==0.1.0

testcontainers-on-whales 0.0.12022-08-03T23:18:20Windows:

py -m pip install testcontainers-on-whales==0.0.1

Unix/macOs:

pip install testcontainers-on-whales==0.0.1


Step 4: Otherwise, you can install testcontainers-on-whales from local archives:

Download the distribution file from testcontainers-on-whales-0.3.0.tar.gz or the specific testcontainers-on-whales version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_testcontainers-on-whales_downloaded_file>

On Unix/macOs:

pip install <path_to_testcontainers-on-whales_downloaded_file>


List distribution:


Project link:

- changelog
- repository