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

How to install halcon via python pip




halcon - Python implementation of FALCON: Feedback Adaptive Loop for Content-Based Retrieval, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Intended Audience :: Information Technology
- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
- Operating System :: OS Independent
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Bio-Informatics
- Topic :: Scientific/Engineering :: Information Analysis

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



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_halcon_env

- Active the virtual environment

test_halcon_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_halcon_env

- Active the virtual environment

source test_halcon_env/bin/active


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

To install halcon on Windows(CMD):

py -m pip install halcon

To install halcon on Unix/macOs:

pip install halcon


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

Example:

pip install halcon==0.0.1


Please see the version list below table:

VersionReleased dateCommand
halcon 1.0.02022-08-11T18:37:47Windows:

py -m pip install halcon==1.0.0

Unix/macOs:

pip install halcon==1.0.0

halcon 0.0.212016-03-27T21:08:25Windows:

py -m pip install halcon==0.0.21

Unix/macOs:

pip install halcon==0.0.21

halcon 0.0.22016-03-27T21:07:20Windows:

py -m pip install halcon==0.0.2

Unix/macOs:

pip install halcon==0.0.2

halcon 0.0.12014-04-08T02:45:09Windows:

py -m pip install halcon==0.0.1

Unix/macOs:

pip install halcon==0.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_halcon_downloaded_file>

On Unix/macOs:

pip install <path_to_halcon_downloaded_file>


List distribution:

- halcon-0.0.1.tar.gz
- halcon-0.0.21.tar.gz
- halcon-1.0.0-py3-none-any.whl (python version >=3.6)
- halcon-1.0.0.tar.gz (python version >=3.6)


Project link:

- Bug Tracker
- Documentation
- Source Code