I have installed Python 2.7, 3.5.2 and 3.6. I try to install pymodbus3
for Python 3.5.2. When I run
pip install -U pymodbus3 --trusted-host pypi.python.org
I get the error:
Collecting pymodbus3
Downloading pymodbus3-1.0.0.tar.gz (80kB)
100% |################################| 81kB 6.8MB/s
Complete output from command python setup.py egg_info:
You need python 3.0 or later to run this script!
I also added Python 3.5.2 to the Python path. What is the next step for analyse my problem?
EDIT:
pip --version
gives me
pip 9.0.1 from C:\Python27\Lib\site-packages (python 2.7)
So I assume that I have to use pip for python3?