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

How to install rain-table via python pip




rain-table - educational activity for teaching how water is routed through a drainage basin, it belongs to Classifiers:

- Intended Audience :: Education
- Intended Audience :: End Users/Desktop
- Topic :: Education

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



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_rain-table_env

- Active the virtual environment

test_rain-table_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_rain-table_env

- Active the virtual environment

source test_rain-table_env/bin/active


Step 2: OK, now, let flow below content to start the installation rain-table

To install rain-table on Windows(CMD):

py -m pip install rain-table

To install rain-table on Unix/macOs:

pip install rain-table


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

Example:

pip install rain-table==3.0.0


Please see the version list below table:

VersionReleased dateCommand
rain-table 3.0.42019-06-08T23:32:52Windows:

py -m pip install rain-table==3.0.4

Unix/macOs:

pip install rain-table==3.0.4

rain-table 3.0.32018-11-28T21:21:03Windows:

py -m pip install rain-table==3.0.3

Unix/macOs:

pip install rain-table==3.0.3

rain-table 3.0.12018-11-06T20:02:31Windows:

py -m pip install rain-table==3.0.1

Unix/macOs:

pip install rain-table==3.0.1

rain-table 3.0.02018-10-31T18:52:46Windows:

py -m pip install rain-table==3.0.0

Unix/macOs:

pip install rain-table==3.0.0


Step 4: Otherwise, you can install rain-table from local archives:

Download the distribution file from rain_table-3.0.4.tar.gz or the specific rain-table version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_rain-table_downloaded_file>

On Unix/macOs:

pip install <path_to_rain-table_downloaded_file>


List distribution:


Project link:

- Homepage
- Bug Reports
- Source