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

How to install smqtk via python pip




smqtk - Python toolkit for pluggable algorithms and data structures for multimedia-based machine learning, it belongs to Classifiers:

- Development Status :: 3 - Alpha
- Intended Audience :: Science/Research
- License :: OSI Approved :: BSD License
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Unix
- Programming Language :: Python
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Artificial Intelligence
- Topic :: Scientific/Engineering :: Image Recognition

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



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_smqtk_env

- Active the virtual environment

test_smqtk_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_smqtk_env

- Active the virtual environment

source test_smqtk_env/bin/active


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

To install smqtk on Windows(CMD):

py -m pip install smqtk

To install smqtk on Unix/macOs:

pip install smqtk


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

Example:

pip install smqtk==0.6.3.dev1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
smqtk 0.14.02020-09-11T22:32:22Windows:

py -m pip install smqtk==0.14.0

Unix/macOs:

pip install smqtk==0.14.0

smqtk 0.13.02019-11-12T23:10:02Windows:

py -m pip install smqtk==0.13.0

Unix/macOs:

pip install smqtk==0.13.0

smqtk 0.12.02019-11-12T18:53:39Windows:

py -m pip install smqtk==0.12.0

Unix/macOs:

pip install smqtk==0.12.0

smqtk 0.11.02019-06-18T00:10:10Windows:

py -m pip install smqtk==0.11.0

Unix/macOs:

pip install smqtk==0.11.0

smqtk 0.9.02018-08-13T19:10:07Windows:

py -m pip install smqtk==0.9.0

Unix/macOs:

pip install smqtk==0.9.0

smqtk 0.8.12018-04-16T16:38:22Windows:

py -m pip install smqtk==0.8.1

Unix/macOs:

pip install smqtk==0.8.1

smqtk 0.7.02017-11-18T01:16:53Windows:

py -m pip install smqtk==0.7.0

Unix/macOs:

pip install smqtk==0.7.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_smqtk_downloaded_file>

On Unix/macOs:

pip install <path_to_smqtk_downloaded_file>


List distribution:


Project link:

- Homepage