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

How to install zoid via python pip




zoid - Commandline tool for easy hosting of project zomboid servers, it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- Programming Language :: Python :: 2.6
- Topic :: Games/Entertainment

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



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_zoid_env

- Active the virtual environment

test_zoid_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_zoid_env

- Active the virtual environment

source test_zoid_env/bin/active


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

To install zoid on Windows(CMD):

py -m pip install zoid

To install zoid on Unix/macOs:

pip install zoid


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

Example:

pip install zoid==0.0.4


Please see the version list below table:

VersionReleased dateCommand
zoid 0.2.32016-12-13T07:30:34Windows:

py -m pip install zoid==0.2.3

Unix/macOs:

pip install zoid==0.2.3

zoid 0.2.22016-12-13T07:26:49Windows:

py -m pip install zoid==0.2.2

Unix/macOs:

pip install zoid==0.2.2

zoid 0.2.12016-04-29T14:26:36Windows:

py -m pip install zoid==0.2.1

Unix/macOs:

pip install zoid==0.2.1

zoid 0.2.02016-04-28T13:16:52Windows:

py -m pip install zoid==0.2.0

Unix/macOs:

pip install zoid==0.2.0

zoid 0.1.82016-04-27T13:11:58Windows:

py -m pip install zoid==0.1.8

Unix/macOs:

pip install zoid==0.1.8

zoid 0.1.72016-04-27T12:01:52Windows:

py -m pip install zoid==0.1.7

Unix/macOs:

pip install zoid==0.1.7

zoid 0.1.52016-04-24T13:24:34Windows:

py -m pip install zoid==0.1.5

Unix/macOs:

pip install zoid==0.1.5

zoid 0.1.42016-04-24T13:01:38Windows:

py -m pip install zoid==0.1.4

Unix/macOs:

pip install zoid==0.1.4

zoid 0.1.22016-04-23T09:39:26Windows:

py -m pip install zoid==0.1.2

Unix/macOs:

pip install zoid==0.1.2

zoid 0.1.12016-04-23T06:52:34Windows:

py -m pip install zoid==0.1.1

Unix/macOs:

pip install zoid==0.1.1

zoid 0.0.42016-03-24T05:19:36Windows:

py -m pip install zoid==0.0.4

Unix/macOs:

pip install zoid==0.0.4


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

Download the distribution file from zoid-0.2.3.zip or the specific zoid version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_zoid_downloaded_file>

On Unix/macOs:

pip install <path_to_zoid_downloaded_file>


List distribution:


Project link:

- Homepage