Pythonic is compatible with Python version 3.6 and 3.7.
1. Install Python 3.7
On Linux based systems,
run sudo pip3 install Pythonic
or sudo python3 -m pip install Pythonic
If youre facing problems installing PyQt5, you may have to upgrade pip first:
python3 -m pip install --upgrade pip
In general, root-rights are not required but when you run without it, the start script under
/usr/local/bin/
won't get installed.
On Windows, open the command line or the Powershell and type:
pip3 install Pythonic
You can now start Pythonic from the command line by typing:
Available on Steemit
Pythonic Tutorial Part 1-6 (Installation, Concept, Toolbar, Logging, Basic Scheduler, Basic Operation)
Pythonic Tutorial Part 7-11 (Branch Element, Return Element, Process Branch Element, Technical Analysis Element, Stack Element)
Pythonic Tutorial Part 12-16 (Send E-Mail, REST Query, Binance Scheduler, Binance OHLC Query, Binance Order)
Pythonic Tutorial Part 17-18 (Support Vector Machine, Support Vector Machine Prediction)
There is a bug in the latest version of PyQt5 on PyPi. Install PyQt 5.13 manually before you install Pythonic.
sudo python3 -m pip install pyqt5==5.13
On Ubuntu, pip3 is not installed by default.
Run sudo apt install python3-pip
to install pip3.
When you get this error message, your distribution propably offers only an old version of urlib3. This command should fix the issue:
sudo python3 -m pip install requests urllib3 pyOpenSSL --force --upgrade