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

How to install goodruns via python pip




goodruns - ATLAS Good Run List (GRL) reader and utilities, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License (GPL)
- Operating System :: Unix
- Topic :: Text Processing
- Topic :: Text Processing :: Markup
- Topic :: Text Processing :: Markup :: XML

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



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_goodruns_env

- Active the virtual environment

test_goodruns_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_goodruns_env

- Active the virtual environment

source test_goodruns_env/bin/active


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

To install goodruns on Windows(CMD):

py -m pip install goodruns

To install goodruns on Unix/macOs:

pip install goodruns


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

Example:

pip install goodruns==1.0


Please see the version list below table:

VersionReleased dateCommand
goodruns 2.8.12015-06-22T02:56:01Windows:

py -m pip install goodruns==2.8.1

Unix/macOs:

pip install goodruns==2.8.1

goodruns 2.8.02015-06-22T00:52:49Windows:

py -m pip install goodruns==2.8.0

Unix/macOs:

pip install goodruns==2.8.0

goodruns 2.72013-07-16T23:55:58Windows:

py -m pip install goodruns==2.7

Unix/macOs:

pip install goodruns==2.7

goodruns 2.62012-05-09T01:17:36Windows:

py -m pip install goodruns==2.6

Unix/macOs:

pip install goodruns==2.6

goodruns 2.52012-05-09T00:21:59Windows:

py -m pip install goodruns==2.5

Unix/macOs:

pip install goodruns==2.5

goodruns 2.02012-01-12T05:10:11Windows:

py -m pip install goodruns==2.0

Unix/macOs:

pip install goodruns==2.0

goodruns 1.52011-10-28T07:30:00Windows:

py -m pip install goodruns==1.5

Unix/macOs:

pip install goodruns==1.5

goodruns 1.02011-08-10T09:39:04Windows:

py -m pip install goodruns==1.0

Unix/macOs:

pip install goodruns==1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_goodruns_downloaded_file>

On Unix/macOs:

pip install <path_to_goodruns_downloaded_file>


List distribution:

- goodruns-1.0.tar.gz
- goodruns-1.5.tar.gz
- goodruns-2.0.tar.gz
- goodruns-2.5.tar.gz
- goodruns-2.6.tar.gz
- goodruns-2.7.tar.gz
- goodruns-2.8.0.tar.gz
- goodruns-2.8.1.tar.gz


Project link:

- Homepage
- Download