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

How to install peanut via python pip




peanut - A massively parallel GPU read mapper using OpenCL., it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: Console
- Intended Audience :: Science/Research
- License :: OSI Approved :: MIT License
- Natural Language :: English
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Bio-Informatics

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



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_peanut_env

- Active the virtual environment

test_peanut_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_peanut_env

- Active the virtual environment

source test_peanut_env/bin/active


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

To install peanut on Windows(CMD):

py -m pip install peanut

To install peanut on Unix/macOs:

pip install peanut


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

Example:

pip install peanut==0.1


Please see the version list below table:

VersionReleased dateCommand
peanut 1.3.72015-07-16T11:09:48Windows:

py -m pip install peanut==1.3.7

Unix/macOs:

pip install peanut==1.3.7

peanut 1.3.62015-04-25T22:04:39Windows:

py -m pip install peanut==1.3.6

Unix/macOs:

pip install peanut==1.3.6

peanut 1.3.52014-11-09T18:59:48Windows:

py -m pip install peanut==1.3.5

Unix/macOs:

pip install peanut==1.3.5

peanut 1.3.42014-11-09T18:50:54Windows:

py -m pip install peanut==1.3.4

Unix/macOs:

pip install peanut==1.3.4

peanut 1.3.32014-11-09T17:49:55Windows:

py -m pip install peanut==1.3.3

Unix/macOs:

pip install peanut==1.3.3

peanut 1.3.22014-09-05T11:15:45Windows:

py -m pip install peanut==1.3.2

Unix/macOs:

pip install peanut==1.3.2

peanut 1.3.12014-08-18T11:36:38Windows:

py -m pip install peanut==1.3.1

Unix/macOs:

pip install peanut==1.3.1

peanut 1.32014-08-18T08:31:02Windows:

py -m pip install peanut==1.3

Unix/macOs:

pip install peanut==1.3

peanut 1.22014-07-07T14:49:41Windows:

py -m pip install peanut==1.2

Unix/macOs:

pip install peanut==1.2

peanut 1.12014-05-26T12:55:24Windows:

py -m pip install peanut==1.1

Unix/macOs:

pip install peanut==1.1

peanut 1.0.22014-05-07T16:17:32Windows:

py -m pip install peanut==1.0.2

Unix/macOs:

pip install peanut==1.0.2

peanut 1.0.12014-04-30T14:02:16Windows:

py -m pip install peanut==1.0.1

Unix/macOs:

pip install peanut==1.0.1

peanut 1.02014-03-27T11:59:52Windows:

py -m pip install peanut==1.0

Unix/macOs:

pip install peanut==1.0

peanut 0.22014-03-10T10:34:12Windows:

py -m pip install peanut==0.2

Unix/macOs:

pip install peanut==0.2

peanut 0.12014-03-07T10:16:27Windows:

py -m pip install peanut==0.1

Unix/macOs:

pip install peanut==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_peanut_downloaded_file>

On Unix/macOs:

pip install <path_to_peanut_downloaded_file>


List distribution:


Project link:

- Homepage