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

How to install civet via python pip




civet - CoffeeScript and Sass asset precompiler for the Django, it belongs to Classifiers:

- Framework :: Django
- Topic :: Software Development :: Pre-processors

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



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_civet_env

- Active the virtual environment

test_civet_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_civet_env

- Active the virtual environment

source test_civet_env/bin/active


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

To install civet on Windows(CMD):

py -m pip install civet

To install civet on Unix/macOs:

pip install civet


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

Example:

pip install civet==0.9.2


Please see the version list below table:

VersionReleased dateCommand
civet 2.0.32017-06-23T00:00:17Windows:

py -m pip install civet==2.0.3

Unix/macOs:

pip install civet==2.0.3

civet 2.0.22016-01-08T20:55:49Windows:

py -m pip install civet==2.0.2

Unix/macOs:

pip install civet==2.0.2

civet 2.0.12016-01-05T22:05:56Windows:

py -m pip install civet==2.0.1

Unix/macOs:

pip install civet==2.0.1

civet 2.0.02016-01-05T21:56:30Windows:

py -m pip install civet==2.0.0

Unix/macOs:

pip install civet==2.0.0

civet 1.2.02015-05-13T17:43:23Windows:

py -m pip install civet==1.2.0

Unix/macOs:

pip install civet==1.2.0

civet 1.1.12015-02-05T08:00:48Windows:

py -m pip install civet==1.1.1

Unix/macOs:

pip install civet==1.1.1

civet 1.1.02015-01-21T21:46:27Windows:

py -m pip install civet==1.1.0

Unix/macOs:

pip install civet==1.1.0

civet 1.0.12014-10-09T01:50:43Windows:

py -m pip install civet==1.0.1

Unix/macOs:

pip install civet==1.0.1

civet 1.0.02014-09-17T19:34:45Windows:

py -m pip install civet==1.0.0

Unix/macOs:

pip install civet==1.0.0

civet 0.9.32014-07-29T04:27:51Windows:

py -m pip install civet==0.9.3

Unix/macOs:

pip install civet==0.9.3

civet 0.9.22014-06-20T18:29:40Windows:

py -m pip install civet==0.9.2

Unix/macOs:

pip install civet==0.9.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_civet_downloaded_file>

On Unix/macOs:

pip install <path_to_civet_downloaded_file>


List distribution:

- civet-0.9.2.tar.gz
- civet-0.9.3.tar.gz
- civet-1.0.0.tar.gz
- civet-1.0.1.tar.gz
- civet-1.1.0.tar.gz
- civet-1.1.1.tar.gz
- civet-1.2.0.tar.gz
- civet-2.0.1.tar.gz
- civet-2.0.2.tar.gz
- civet-2.0.3.tar.gz


Project link:

- Homepage