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

How to install mara via python pip




mara - A framework for network services, talkers and MUDs, it belongs to Classifiers:

- Programming Language :: Python :: 3.2
- Programming Language :: Python :: 3.3
- Topic :: Communications
- Topic :: Communications :: Chat
- Topic :: Games/Entertainment
- Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
- Topic :: Internet

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



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_mara_env

- Active the virtual environment

test_mara_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_mara_env

- Active the virtual environment

source test_mara_env/bin/active


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

To install mara on Windows(CMD):

py -m pip install mara

To install mara on Unix/macOs:

pip install mara


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

Example:

pip install mara==0.4.0


Please see the version list below table:

VersionReleased dateCommand
mara 0.6.32018-10-06T07:20:41Windows:

py -m pip install mara==0.6.3

Unix/macOs:

pip install mara==0.6.3

mara 0.6.22017-09-25T17:19:29Windows:

py -m pip install mara==0.6.2

Unix/macOs:

pip install mara==0.6.2

mara 0.6.12016-10-20T18:52:53Windows:

py -m pip install mara==0.6.1

Unix/macOs:

pip install mara==0.6.1

mara 0.6.02015-12-20T16:30:47Windows:

py -m pip install mara==0.6.0

Unix/macOs:

pip install mara==0.6.0

mara 0.5.02015-12-13T11:40:10Windows:

py -m pip install mara==0.5.0

Unix/macOs:

pip install mara==0.5.0

mara 0.4.02015-11-22T13:05:02Windows:

py -m pip install mara==0.4.0

Unix/macOs:

pip install mara==0.4.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_mara_downloaded_file>

On Unix/macOs:

pip install <path_to_mara_downloaded_file>


List distribution:

- mara-0.4.0-py2-none-any.whl
- mara-0.4.0.tar.gz
- mara-0.5.0-py2-none-any.whl
- mara-0.5.0.tar.gz
- mara-0.6.0-py2.py3-none-any.whl
- mara-0.6.0.tar.gz
- mara-0.6.1-py2.py3-none-any.whl
- mara-0.6.1.tar.gz
- mara-0.6.2-py2.py3-none-any.whl
- mara-0.6.2.tar.gz
- mara-0.6.3.tar.gz
- mara-2.0.0-py3-none-any.whl (python version >=3.10)
- mara-2.0.0.tar.gz (python version >=3.10)


Project link:

- Homepage