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

How to install gurun via python pip




gurun - Task automation framework, it belongs to Classifiers:

- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules

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



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_gurun_env

- Active the virtual environment

test_gurun_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_gurun_env

- Active the virtual environment

source test_gurun_env/bin/active


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

To install gurun on Windows(CMD):

py -m pip install gurun

To install gurun on Unix/macOs:

pip install gurun


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

Example:

pip install gurun==0.2.0a0                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
gurun 1.1.02022-01-15T01:24:41Windows:

py -m pip install gurun==1.1.0

Unix/macOs:

pip install gurun==1.1.0

gurun 1.0.02022-01-03T19:01:24Windows:

py -m pip install gurun==1.0.0

Unix/macOs:

pip install gurun==1.0.0

gurun 0.5.02022-01-03T01:51:10Windows:

py -m pip install gurun==0.5.0

Unix/macOs:

pip install gurun==0.5.0

gurun 0.4.02022-01-02T04:36:20Windows:

py -m pip install gurun==0.4.0

Unix/macOs:

pip install gurun==0.4.0

gurun 0.3.42022-01-01T17:07:52Windows:

py -m pip install gurun==0.3.4

Unix/macOs:

pip install gurun==0.3.4

gurun 0.3.22022-01-01T03:46:59Windows:

py -m pip install gurun==0.3.2

Unix/macOs:

pip install gurun==0.3.2

gurun 0.3.12022-01-01T02:59:30Windows:

py -m pip install gurun==0.3.1

Unix/macOs:

pip install gurun==0.3.1

gurun 0.3.02022-01-01T02:09:42Windows:

py -m pip install gurun==0.3.0

Unix/macOs:

pip install gurun==0.3.0

gurun 0.2.12022-01-01T01:00:30Windows:

py -m pip install gurun==0.2.1

Unix/macOs:

pip install gurun==0.2.1

gurun 0.2.02021-12-31T23:27:33Windows:

py -m pip install gurun==0.2.0

Unix/macOs:

pip install gurun==0.2.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gurun_downloaded_file>

On Unix/macOs:

pip install <path_to_gurun_downloaded_file>


List distribution:

- gurun-0.2.0a0-py3-none-any.whl (python version >=3.8,<4.0)
- gurun-0.2.0a0.tar.gz (python version >=3.8,<4.0)
- gurun-0.2.0-py3-none-any.whl (python version >=3.7.12,<4.0.0)
- gurun-0.2.0.tar.gz (python version >=3.7.12,<4.0.0)
- gurun-0.2.1-py3-none-any.whl (python version >=3.7.12,<4.0.0)
- gurun-0.2.1.tar.gz (python version >=3.7.12,<4.0.0)
- gurun-0.3.0-py3-none-any.whl (python version >=3.7.12,<4.0.0)
- gurun-0.3.0.tar.gz (python version >=3.7.12,<4.0.0)
- gurun-0.3.1-py3-none-any.whl (python version >=3.7.12,<4.0.0)
- gurun-0.3.1.tar.gz (python version >=3.7.12,<4.0.0)
- gurun-0.3.2-py3-none-any.whl (python version >=3.7.12,<4.0.0)
- gurun-0.3.2.tar.gz (python version >=3.7.12,<4.0.0)
- gurun-0.3.4-py3-none-any.whl (python version >=3.7.12,<4.0.0)
- gurun-0.3.4.tar.gz (python version >=3.7.12,<4.0.0)
- gurun-0.4.0-py3-none-any.whl (python version >=3.7.12,<4.0.0)
- gurun-0.4.0.tar.gz (python version >=3.7.12,<4.0.0)
- gurun-0.5.0-py3-none-any.whl (python version >=3.7.12,<3.11)
- gurun-0.5.0.tar.gz (python version >=3.7.12,<3.11)
- gurun-1.0.0a0-py3-none-any.whl (python version >=3.7.12,<3.11)
- gurun-1.0.0a0.tar.gz (python version >=3.7.12,<3.11)
- gurun-1.0.0-py3-none-any.whl (python version >=3.7.12,<3.11)
- gurun-1.0.0.tar.gz (python version >=3.7.12,<3.11)
- gurun-1.1.0-py3-none-any.whl (python version >=3.7.12,<3.11)
- gurun-1.1.0.tar.gz (python version >=3.7.12,<3.11)


Project link:

- Homepage
- Repository