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

How to install epicserver via python pip




epicserver - A managed runtime aimed at running games distributed over multiple nodes, it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- License :: OSI Approved :: BSD License
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Games/Entertainment
- Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
- Topic :: Games/Entertainment :: Real Time Strategy
- Topic :: Games/Entertainment :: Role-Playing
- Topic :: Games/Entertainment :: Simulation
- Topic :: Software Development :: Libraries :: Application Frameworks
- Topic :: Software Development :: Version Control
- Topic :: Software Development :: Version Control :: Mercurial
- Topic :: System
- Topic :: System :: Clustering
- Topic :: System :: Distributed Computing

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



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_epicserver_env

- Active the virtual environment

test_epicserver_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_epicserver_env

- Active the virtual environment

source test_epicserver_env/bin/active


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

To install epicserver on Windows(CMD):

py -m pip install epicserver

To install epicserver on Unix/macOs:

pip install epicserver


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

Example:

pip install epicserver==0.1


Please see the version list below table:

VersionReleased dateCommand
epicserver 0.2.82021-09-23T17:36:46Windows:

py -m pip install epicserver==0.2.8

Unix/macOs:

pip install epicserver==0.2.8

epicserver 0.2.62021-09-23T17:31:12Windows:

py -m pip install epicserver==0.2.6

Unix/macOs:

pip install epicserver==0.2.6

epicserver 0.1.12017-06-16T12:03:56Windows:

py -m pip install epicserver==0.1.1

Unix/macOs:

pip install epicserver==0.1.1

epicserver 0.12017-06-11T13:36:10Windows:

py -m pip install epicserver==0.1

Unix/macOs:

pip install epicserver==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_epicserver_downloaded_file>

On Unix/macOs:

pip install <path_to_epicserver_downloaded_file>


List distribution:

- epicserver-0.1.tar.gz
- epicserver-0.1.1.zip
- epicserver-0.2.6-py3-none-any.whl (python version >"3.8")
- epicserver-0.2.6.tar.gz (python version >"3.8")
- epicserver-0.2.8-py3-none-any.whl (python version >"3.8")
- epicserver-0.2.8.tar.gz (python version >"3.8")


Project link:

- Homepage
- Documentation
- Play the Game
- Source