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

How to install vsc-utils via python pip




vsc-utils - Common tools used within our organization. These tools live in the vsc.utils namespace, toghether with the tools from vsc-base., it belongs to Classifiers:

- License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)

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



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_vsc-utils_env

- Active the virtual environment

test_vsc-utils_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_vsc-utils_env

- Active the virtual environment

source test_vsc-utils_env/bin/active


Step 2: OK, now, let flow below content to start the installation vsc-utils

To install vsc-utils on Windows(CMD):

py -m pip install vsc-utils

To install vsc-utils on Unix/macOs:

pip install vsc-utils


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

Example:

pip install vsc-utils==1.8.5


Please see the version list below table:

VersionReleased dateCommand
vsc-utils 2.1.102021-05-07T11:35:08Windows:

py -m pip install vsc-utils==2.1.10

Unix/macOs:

pip install vsc-utils==2.1.10

vsc-utils 2.1.32020-05-05T13:16:51Windows:

py -m pip install vsc-utils==2.1.3

Unix/macOs:

pip install vsc-utils==2.1.3

vsc-utils 2.0.12020-04-22T11:37:48Windows:

py -m pip install vsc-utils==2.0.1

Unix/macOs:

pip install vsc-utils==2.0.1

vsc-utils 2.0.02020-03-26T14:07:13Windows:

py -m pip install vsc-utils==2.0.0

Unix/macOs:

pip install vsc-utils==2.0.0

vsc-utils 1.10.42019-06-03T09:43:02Windows:

py -m pip install vsc-utils==1.10.4

Unix/macOs:

pip install vsc-utils==1.10.4

vsc-utils 1.8.52016-06-07T15:29:06Windows:

py -m pip install vsc-utils==1.8.5

Unix/macOs:

pip install vsc-utils==1.8.5


Step 4: Otherwise, you can install vsc-utils from local archives:

Download the distribution file from vsc-utils-2.1.10.tar.gz or the specific vsc-utils version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_vsc-utils_downloaded_file>

On Unix/macOs:

pip install <path_to_vsc-utils_downloaded_file>


List distribution:


Project link:

- Homepage