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

How to install hrs via python pip




hrs - High Resolution Spectrograph (2.16m) Reduction pipeline., it belongs to Classifiers:

- Development Status :: 6 - Mature
- Topic :: Scientific/Engineering :: Astronomy

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



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_hrs_env

- Active the virtual environment

test_hrs_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_hrs_env

- Active the virtual environment

source test_hrs_env/bin/active


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

To install hrs on Windows(CMD):

py -m pip install hrs

To install hrs on Unix/macOs:

pip install hrs


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

Example:

pip install hrs==1.0.0


Please see the version list below table:

VersionReleased dateCommand
hrs 1.2.22017-02-25T14:01:31Windows:

py -m pip install hrs==1.2.2

Unix/macOs:

pip install hrs==1.2.2

hrs 1.1.92017-01-08T07:00:14Windows:

py -m pip install hrs==1.1.9

Unix/macOs:

pip install hrs==1.1.9

hrs 1.1.82017-01-06T09:03:58Windows:

py -m pip install hrs==1.1.8

Unix/macOs:

pip install hrs==1.1.8

hrs 1.1.72017-01-05T06:47:27Windows:

py -m pip install hrs==1.1.7

Unix/macOs:

pip install hrs==1.1.7

hrs 1.1.62017-01-04T09:45:23Windows:

py -m pip install hrs==1.1.6

Unix/macOs:

pip install hrs==1.1.6

hrs 1.1.52017-01-04T09:43:31Windows:

py -m pip install hrs==1.1.5

Unix/macOs:

pip install hrs==1.1.5

hrs 1.1.42017-01-04T08:23:48Windows:

py -m pip install hrs==1.1.4

Unix/macOs:

pip install hrs==1.1.4

hrs 1.1.32017-01-04T08:14:55Windows:

py -m pip install hrs==1.1.3

Unix/macOs:

pip install hrs==1.1.3

hrs 1.1.22016-12-30T08:31:43Windows:

py -m pip install hrs==1.1.2

Unix/macOs:

pip install hrs==1.1.2

hrs 1.1.12016-12-30T07:30:31Windows:

py -m pip install hrs==1.1.1

Unix/macOs:

pip install hrs==1.1.1

hrs 1.1.02016-12-29T03:56:45Windows:

py -m pip install hrs==1.1.0

Unix/macOs:

pip install hrs==1.1.0

hrs 1.0.02016-12-01T07:17:40Windows:

py -m pip install hrs==1.0.0

Unix/macOs:

pip install hrs==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_hrs_downloaded_file>

On Unix/macOs:

pip install <path_to_hrs_downloaded_file>


List distribution:

- hrs-1.0.0.tar.gz
- hrs-1.1.0.tar.gz
- hrs-1.1.1.tar.gz
- hrs-1.1.2.tar.gz
- hrs-1.1.3.tar.gz
- hrs-1.1.4.tar.gz
- hrs-1.1.5.tar.gz
- hrs-1.1.6.tar.gz
- hrs-1.1.7.tar.gz
- hrs-1.1.8.tar.gz
- hrs-1.1.9.tar.gz
- hrs-1.2.2.tar.gz


Project link:

- Homepage