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

How to install fuma via python pip




fuma - Fusion Matcher, it belongs to Classifiers:

- Topic :: Scientific/Engineering :: Bio-Informatics

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



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_fuma_env

- Active the virtual environment

test_fuma_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_fuma_env

- Active the virtual environment

source test_fuma_env/bin/active


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

To install fuma on Windows(CMD):

py -m pip install fuma

To install fuma on Unix/macOs:

pip install fuma


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

Example:

pip install fuma==2.12.1


Please see the version list below table:

VersionReleased dateCommand
fuma 4.0.02021-09-22T11:58:43Windows:

py -m pip install fuma==4.0.0

Unix/macOs:

pip install fuma==4.0.0

fuma 3.0.82021-08-12T12:18:30Windows:

py -m pip install fuma==3.0.8

Unix/macOs:

pip install fuma==3.0.8

fuma 3.0.52016-07-11T09:15:14Windows:

py -m pip install fuma==3.0.5

Unix/macOs:

pip install fuma==3.0.5

fuma 3.0.32016-07-08T12:58:16Windows:

py -m pip install fuma==3.0.3

Unix/macOs:

pip install fuma==3.0.3

fuma 3.0.22016-07-05T07:36:35Windows:

py -m pip install fuma==3.0.2

Unix/macOs:

pip install fuma==3.0.2

fuma 3.0.12016-07-05T07:42:11Windows:

py -m pip install fuma==3.0.1

Unix/macOs:

pip install fuma==3.0.1

fuma 3.0.02016-07-05T07:42:08Windows:

py -m pip install fuma==3.0.0

Unix/macOs:

pip install fuma==3.0.0

fuma 2.12.32016-07-05T07:42:05Windows:

py -m pip install fuma==2.12.3

Unix/macOs:

pip install fuma==2.12.3

fuma 2.12.22016-07-05T07:42:01Windows:

py -m pip install fuma==2.12.2

Unix/macOs:

pip install fuma==2.12.2

fuma 2.12.12016-07-05T07:41:58Windows:

py -m pip install fuma==2.12.1

Unix/macOs:

pip install fuma==2.12.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_fuma_downloaded_file>

On Unix/macOs:

pip install <path_to_fuma_downloaded_file>


List distribution:

- fuma-2.12.1-py2.7.egg
- fuma-2.12.2-py2.7.egg
- fuma-2.12.3-py2.7.egg
- fuma-3.0.0-py2.7.egg
- fuma-3.0.1-py2.7.egg
- fuma-3.0.2-py2.7.egg
- fuma-3.0.3-py2.7.egg
- fuma-3.0.3.tar.gz
- fuma-3.0.5.tar.gz
- fuma-3.0.8-py3-none-any.whl
- fuma-3.0.8.tar.gz
- fuma-4.0.0-py3-none-any.whl
- fuma-4.0.0.tar.gz


Project link:

- Homepage