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

How to install GAparsimony via python pip




GAparsimony - Combines feature selection, model tuning, and parsimonious model selection with GA optimization. GA selection procedure is based on separate cost and complexity evaluations. Therefore, the best individuals are initially sorted by an error fitness function, and afterwards, models with similar costs are rearranged according to modelcomplexity measurement so as to foster models of lesser complexity. The algorithm can be run sequentially or in parallel., it belongs to Classifiers:

- Development Status :: 3 - Alpha
- Intended Audience :: Science/Research
- License :: OSI Approved :: MIT License
- Programming Language :: Python
- Programming Language :: Python :: 3
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Artificial Intelligence

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



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_GAparsimony_env

- Active the virtual environment

test_GAparsimony_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_GAparsimony_env

- Active the virtual environment

source test_GAparsimony_env/bin/active


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

To install GAparsimony on Windows(CMD):

py -m pip install GAparsimony

To install GAparsimony on Unix/macOs:

pip install GAparsimony


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

Example:

pip install GAparsimony==0.0.6


Please see the version list below table:

VersionReleased dateCommand
GAparsimony 0.0.152021-12-15T16:19:41Windows:

py -m pip install GAparsimony==0.0.15

Unix/macOs:

pip install GAparsimony==0.0.15

GAparsimony 0.0.142021-11-23T17:49:41Windows:

py -m pip install GAparsimony==0.0.14

Unix/macOs:

pip install GAparsimony==0.0.14

GAparsimony 0.0.132021-11-15T21:08:50Windows:

py -m pip install GAparsimony==0.0.13

Unix/macOs:

pip install GAparsimony==0.0.13

GAparsimony 0.0.122021-11-15T11:23:24Windows:

py -m pip install GAparsimony==0.0.12

Unix/macOs:

pip install GAparsimony==0.0.12

GAparsimony 0.0.112021-09-07T08:42:52Windows:

py -m pip install GAparsimony==0.0.11

Unix/macOs:

pip install GAparsimony==0.0.11

GAparsimony 0.0.102021-07-04T13:33:40Windows:

py -m pip install GAparsimony==0.0.10

Unix/macOs:

pip install GAparsimony==0.0.10

GAparsimony 0.0.92021-06-22T21:20:05Windows:

py -m pip install GAparsimony==0.0.9

Unix/macOs:

pip install GAparsimony==0.0.9

GAparsimony 0.0.82021-06-22T17:49:29Windows:

py -m pip install GAparsimony==0.0.8

Unix/macOs:

pip install GAparsimony==0.0.8

GAparsimony 0.0.72021-06-22T17:38:37Windows:

py -m pip install GAparsimony==0.0.7

Unix/macOs:

pip install GAparsimony==0.0.7

GAparsimony 0.0.62021-06-19T11:34:03Windows:

py -m pip install GAparsimony==0.0.6

Unix/macOs:

pip install GAparsimony==0.0.6


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_GAparsimony_downloaded_file>

On Unix/macOs:

pip install <path_to_GAparsimony_downloaded_file>


List distribution:

- GAparsimony-0.0.6-py3-none-any.whl
- GAparsimony-0.0.6.tar.gz
- GAparsimony-0.0.7-py3-none-any.whl
- GAparsimony-0.0.7.tar.gz
- GAparsimony-0.0.8-py3-none-any.whl
- GAparsimony-0.0.8.tar.gz
- GAparsimony-0.0.9-py3-none-any.whl
- GAparsimony-0.0.9.tar.gz
- GAparsimony-0.0.10-py3-none-any.whl
- GAparsimony-0.0.10.tar.gz
- GAparsimony-0.0.11-py3-none-any.whl (python version >=3.7)
- GAparsimony-0.0.11.tar.gz (python version >=3.7)
- GAparsimony-0.0.12-py3-none-any.whl (python version >=3.7)
- GAparsimony-0.0.12.tar.gz (python version >=3.7)
- GAparsimony-0.0.13-py3-none-any.whl (python version >=3.7)
- GAparsimony-0.0.13.tar.gz (python version >=3.7)
- GAparsimony-0.0.14-py3-none-any.whl (python version >=3.7)
- GAparsimony-0.0.14.tar.gz (python version >=3.7)
- GAparsimony-0.0.15-py3-none-any.whl (python version >=3.7)
- GAparsimony-0.0.15.tar.gz (python version >=3.7)


Project link:

- Homepage