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

How to install sra via python pip




sra - A simple deploy tool, it belongs to Classifiers:

- Development Status :: 3 - Alpha
- License :: OSI Approved :: MIT License
- Programming Language :: Python
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.2
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5
- Topic :: Software Development
- Topic :: Software Development :: Build Tools

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



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_sra_env

- Active the virtual environment

test_sra_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_sra_env

- Active the virtual environment

source test_sra_env/bin/active


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

To install sra on Windows(CMD):

py -m pip install sra

To install sra on Unix/macOs:

pip install sra


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

Example:

pip install sra==0.1.7


Please see the version list below table:

VersionReleased dateCommand
sra 0.3.42017-02-10T02:17:21Windows:

py -m pip install sra==0.3.4

Unix/macOs:

pip install sra==0.3.4

sra 0.3.32016-09-11T06:03:13Windows:

py -m pip install sra==0.3.3

Unix/macOs:

pip install sra==0.3.3

sra 0.3.22016-09-11T05:33:54Windows:

py -m pip install sra==0.3.2

Unix/macOs:

pip install sra==0.3.2

sra 0.3.12016-09-11T05:31:25Windows:

py -m pip install sra==0.3.1

Unix/macOs:

pip install sra==0.3.1

sra 0.3.02016-09-11T05:24:02Windows:

py -m pip install sra==0.3.0

Unix/macOs:

pip install sra==0.3.0

sra 0.2.92016-08-21T10:21:42Windows:

py -m pip install sra==0.2.9

Unix/macOs:

pip install sra==0.2.9

sra 0.2.52016-08-21T09:59:25Windows:

py -m pip install sra==0.2.5

Unix/macOs:

pip install sra==0.2.5

sra 0.2.42016-08-21T09:44:52Windows:

py -m pip install sra==0.2.4

Unix/macOs:

pip install sra==0.2.4

sra 0.2.32016-08-09T06:51:47Windows:

py -m pip install sra==0.2.3

Unix/macOs:

pip install sra==0.2.3

sra 0.2.22016-02-18T06:55:04Windows:

py -m pip install sra==0.2.2

Unix/macOs:

pip install sra==0.2.2

sra 0.2.12016-02-18T01:18:53Windows:

py -m pip install sra==0.2.1

Unix/macOs:

pip install sra==0.2.1

sra 0.2.02016-02-18T01:18:46Windows:

py -m pip install sra==0.2.0

Unix/macOs:

pip install sra==0.2.0

sra 0.1.72016-02-17T07:44:10Windows:

py -m pip install sra==0.1.7

Unix/macOs:

pip install sra==0.1.7


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

Download the distribution file from sra-0.3.4-py2.py3-none-any.whl or the specific sra version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sra_downloaded_file>

On Unix/macOs:

pip install <path_to_sra_downloaded_file>


List distribution:


Project link:

- Homepage