Download & Install¶
Here you’ll find all the necessary explanations for installing pyqode.python.
Requirements¶
pyqode.python depends on the following packages (that will be automatically installed when using pip install or setup.py install):
- pyqode.core
- jedi
- pep8
- frosted (an alternative to pyflakes)
Supported platforms¶
pyqode.python runs on the same platforms as pyqode.core:
- Windows
- GNU/Linux
- Mac OSX (>= 10.9)
Using pip (the recommended way)¶
pyqode.python can be installed from pypi using pip:
$ pip install pyqode.python
From source¶
You can download the source archive from the github repository
Then you can install the package by opening a terminal an typing the following commands:
$ cd path/to/source/
$ python setup.py install
Alternatively you can clone the repository using git:
$ git clone git@github.com:pyQode/pyqode.python.git
$ cd pyqode.python
$ python setup.py install