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

How to install factoirc via python pip




factoirc - Bidirectional IRC bridge for Factorio, it belongs to Classifiers:

- Development Status :: 3 - Alpha
- Programming Language :: Python :: 3 :: Only
- Topic :: Communications
- Topic :: Communications :: Chat
- Topic :: Communications :: Chat :: Internet Relay Chat
- Topic :: Games/Entertainment

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



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_factoirc_env

- Active the virtual environment

test_factoirc_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_factoirc_env

- Active the virtual environment

source test_factoirc_env/bin/active


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

To install factoirc on Windows(CMD):

py -m pip install factoirc

To install factoirc on Unix/macOs:

pip install factoirc


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

Example:

pip install factoirc==0.2


Please see the version list below table:

VersionReleased dateCommand
factoirc 0.62017-05-16T20:14:02Windows:

py -m pip install factoirc==0.6

Unix/macOs:

pip install factoirc==0.6

factoirc 0.52016-07-23T16:49:09Windows:

py -m pip install factoirc==0.5

Unix/macOs:

pip install factoirc==0.5

factoirc 0.42016-07-20T23:28:30Windows:

py -m pip install factoirc==0.4

Unix/macOs:

pip install factoirc==0.4

factoirc 0.32016-07-14T20:38:51Windows:

py -m pip install factoirc==0.3

Unix/macOs:

pip install factoirc==0.3

factoirc 0.22016-07-14T15:57:20Windows:

py -m pip install factoirc==0.2

Unix/macOs:

pip install factoirc==0.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_factoirc_downloaded_file>

On Unix/macOs:

pip install <path_to_factoirc_downloaded_file>


List distribution:

- factoirc-0.2-py3-none-any.whl
- factoirc-0.2.tar.gz
- factoirc-0.3-py3-none-any.whl
- factoirc-0.3.tar.gz
- factoirc-0.4-py3-none-any.whl
- factoirc-0.4.tar.gz
- factoirc-0.5-py3-none-any.whl
- factoirc-0.5.tar.gz
- factoirc-0.6-py3-none-any.whl
- factoirc-0.6.tar.gz


Project link:

- Homepage