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

How to install plink via python pip




plink - A full featured Tk-based knot and link editor, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Mathematics

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



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_plink_env

- Active the virtual environment

test_plink_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_plink_env

- Active the virtual environment

source test_plink_env/bin/active


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

To install plink on Windows(CMD):

py -m pip install plink

To install plink on Unix/macOs:

pip install plink


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

Example:

pip install plink==1.7.1


Please see the version list below table:

VersionReleased dateCommand
plink 2.4.12021-11-10T15:47:47Windows:

py -m pip install plink==2.4.1

Unix/macOs:

pip install plink==2.4.1

plink 2.42021-04-17T01:18:50Windows:

py -m pip install plink==2.4

Unix/macOs:

pip install plink==2.4

plink 2.3.12020-06-16T17:45:25Windows:

py -m pip install plink==2.3.1

Unix/macOs:

pip install plink==2.3.1

plink 2.32019-07-16T14:38:03Windows:

py -m pip install plink==2.3

Unix/macOs:

pip install plink==2.3

plink 2.22017-11-27T16:34:44Windows:

py -m pip install plink==2.2

Unix/macOs:

pip install plink==2.2

plink 2.12017-08-05T19:29:13Windows:

py -m pip install plink==2.1

Unix/macOs:

pip install plink==2.1

plink 2.0.12017-06-01T19:47:25Windows:

py -m pip install plink==2.0.1

Unix/macOs:

pip install plink==2.0.1

plink 2.02017-02-21T21:16:32Windows:

py -m pip install plink==2.0

Unix/macOs:

pip install plink==2.0

plink 1.9.22017-01-01T23:21:11Windows:

py -m pip install plink==1.9.2

Unix/macOs:

pip install plink==1.9.2

plink 1.9.12016-05-27T14:40:45Windows:

py -m pip install plink==1.9.1

Unix/macOs:

pip install plink==1.9.1

plink 1.92016-05-24T22:42:05Windows:

py -m pip install plink==1.9

Unix/macOs:

pip install plink==1.9

plink 1.82015-03-22T18:48:09Windows:

py -m pip install plink==1.8

Unix/macOs:

pip install plink==1.8

plink 1.7.12014-12-17T19:11:31Windows:

py -m pip install plink==1.7.1

Unix/macOs:

pip install plink==1.7.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_plink_downloaded_file>

On Unix/macOs:

pip install <path_to_plink_downloaded_file>


List distribution:


Project link:

- Homepage