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

How to install civiltools via python pip




civiltools - A series of tools for civil engineers., it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- License :: OSI Approved :: GNU General Public License (GPL)
- Natural Language :: Persian

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



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_civiltools_env

- Active the virtual environment

test_civiltools_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_civiltools_env

- Active the virtual environment

source test_civiltools_env/bin/active


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

To install civiltools on Windows(CMD):

py -m pip install civiltools

To install civiltools on Unix/macOs:

pip install civiltools


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

Example:

pip install civiltools==1.5


Please see the version list below table:

VersionReleased dateCommand
civiltools 1.252017-10-07T22:09:10Windows:

py -m pip install civiltools==1.25

Unix/macOs:

pip install civiltools==1.25

civiltools 1.242017-10-05T16:53:07Windows:

py -m pip install civiltools==1.24

Unix/macOs:

pip install civiltools==1.24

civiltools 1.5.22018-12-08T22:31:21Windows:

py -m pip install civiltools==1.5.2

Unix/macOs:

pip install civiltools==1.5.2

civiltools 1.5.12018-12-08T22:04:02Windows:

py -m pip install civiltools==1.5.1

Unix/macOs:

pip install civiltools==1.5.1

civiltools 1.52018-12-08T21:52:54Windows:

py -m pip install civiltools==1.5

Unix/macOs:

pip install civiltools==1.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_civiltools_downloaded_file>

On Unix/macOs:

pip install <path_to_civiltools_downloaded_file>


List distribution:

- civiltools-1.5-py2.py3-none-any.whl
- civiltools-1.5.tar.gz
- civiltools-1.5.1-py2.py3-none-any.whl
- civiltools-1.5.2-py2.py3-none-any.whl
- civiltools-1.24.tar.gz
- civiltools-1.25.tar.gz
- civiltools-1.40.0.dev1-py2.py3-none-any.whl
- civiltools-1.40.0.dev1.tar.gz
- civiltools-1.40.0.dev2.tar.gz
- civiltools-1.40.0.dev3.tar.gz
- civiltools-1.40.0.dev5.tar.gz
- civiltools-1.40.0.dev6.tar.gz
- civiltools-1.40.0.dev7.tar.gz
- civiltools-1.40.0.dev8.tar.gz
- civiltools-1.40.0.dev9.tar.gz
- civiltools-1.41.0.dev1.tar.gz
- civiltools-1.41.0.dev3.tar.gz
- civiltools-1.41.0.dev4.tar.gz
- civiltools-1.41.0.dev5.tar.gz
- civiltools-1.42.0.dev0.tar.gz
- civiltools-1.42.0.dev1.tar.gz
- civiltools-1.42.0.dev2.tar.gz


Project link:

- Homepage