Skip to content

Latest commit

 

History

History
38 lines (23 loc) · 888 Bytes

install.rst

File metadata and controls

38 lines (23 loc) · 888 Bytes

Installation

Download and install from PyPi using pip (recommended)

pip3 install golos-python

(Alternative) Manual install from Git

Option 1 - Use pip to install straight from Github

pip3 install git+https://github.com/Privex/golos-python

Option 2 - Clone and install manually

# Clone the repository from Github
git clone https://github.com/Privex/golos-python
cd golos-python

# RECOMMENDED MANUAL INSTALL METHOD
# Use pip to install the source code
pip3 install .

# ALTERNATIVE MANUAL INSTALL METHOD
# If you don't have pip, or have issues with installing using it, then you can use setuptools instead.
python3 setup.py install