das kommt bei make setup
und funktioniert final nicht
root@XPS13-CGruber:/home/cgruber/hiveeyes/sources/hiveeyes-micropython-firmware# make setup
.venv3/bin/pip --quiet install --requirement requirements-dev.txt
# Install "upip", the PyPI package manager for MicroPython.
.venv3/bin/pip install micropython-cpython-upip
Requirement already satisfied: micropython-cpython-upip in ./.venv3/lib/python3.5/site-packages (1.2.6)
Requirement already satisfied: micropython-cpython-usocket in ./.venv3/lib/python3.5/site-packages (from micropython-cpython-upip) (0.1)
Requirement already satisfied: micropython-cpython-uos in ./.venv3/lib/python3.5/site-packages (from micropython-cpython-upip) (0.1)
Requirement already satisfied: micropython-cpython-ujson in ./.venv3/lib/python3.5/site-packages (from micropython-cpython-upip) (0.2)
Requirement already satisfied: micropython-cpython-uerrno in ./.venv3/lib/python3.5/site-packages (from micropython-cpython-upip) (0.1)
Requirement already satisfied: micropython-cpython-uzlib in ./.venv3/lib/python3.5/site-packages (from micropython-cpython-upip) (0.1)
Requirement already satisfied: micropython-cpython-ussl in ./.venv3/lib/python3.5/site-packages (from micropython-cpython-upip) (0.1)
Requirement already satisfied: micropython-cpython-micropython in ./.venv3/lib/python3.5/site-packages (from micropython-cpython-usocket->micropython-cpython-upip) (0.2)
Requirement already satisfied: micropython-cpython-uio in ./.venv3/lib/python3.5/site-packages (from micropython-cpython-ussl->micropython-cpython-upip) (0.2)
# Install all required packages listed in file "requirements-mpy.txt".
.venv3/bin/python -m upip install -p ./dist-packages -r requirements-mpy.txt
Installing to: ./dist-packages/
Warning: pypi.org SSL certificate is not validated
Installing micropython-copy 3.3.3.post3 from https://files.pythonhosted.org/packages/da/0f/2474b2f9780c55869f3b0202ba91ed0e4679bb4a94f7ba9ff6c7a9f9851d/micropython-copy-3.3.3.post3.tar.gz
Installing micropython-types 3.3.3.post2 from https://files.pythonhosted.org/packages/62/e2/91eb43581c88e3119eef3a6d6789be26a5c5caa6e8b94d581736217be322/micropython-types-3.3.3.post2.tar.gz
Installing micropython-collections 0.1.3 from https://files.pythonhosted.org/packages/17/c8/2da83be4fe0cf730fcbf62ac584171d0ce0c4a0dd506b9a77930b0f4191c/micropython-collections-0.1.3.tar.gz
Installing micropython-collections.defaultdict 0.3 from https://files.pythonhosted.org/packages/b2/85/9e1a291d0404cda45814ef4385e6da2e7702d27b206fe69f39c980035563/micropython-collections.defaultdict-0.3.tar.gz
# Install "micropython-urllib.parse" without "micropython-re-pcre"
# to avoid collision with libraries shipped as Pycom builtins.
mkdir -p ./dist-packages/urllib
wget --quiet --no-clobber --directory-prefix ./dist-packages/urllib https://raw.githubusercontent.com/pfalcon/micropython-lib/5f619c88/urllib.parse/urllib/parse.py
touch ./dist-packages/urllib/__init__.py
# Install "micropython-base64" without 'micropython-binascii', 'micropython-re-pcre', 'micropython-struct'
wget --quiet --no-clobber --directory-prefix ./dist-packages https://raw.githubusercontent.com/pfalcon/micropython-lib/5f619c88/base64/base64.py
# Install "micropython-logging" without "micropython-os"
# to avoid collision with libraries shipped as Pycom builtins.
mkdir -p ./dist-packages/logging
wget --quiet --no-clobber --directory-prefix ./dist-packages/logging https://raw.githubusercontent.com/pfalcon/micropython-lib/5f619c88/logging/logging/__init__.py
wget --quiet --no-clobber --directory-prefix ./dist-packages/logging https://raw.githubusercontent.com/pfalcon/micropython-lib/5f619c88/logging/logging/handlers.py
# Install Pycom "mqtt.py"
wget --quiet --no-clobber --directory-prefix ./dist-packages https://raw.githubusercontent.com/pycom/pycom-libraries/6544105e/lib/mqtt/mqtt.py
# Install Pycoproc Libary
wget --quiet --no-clobber --directory-prefix ./dist-packages https://raw.githubusercontent.com/pycom/pycom-libraries/681302a4/lib/pycoproc/pycoproc.py
#Install quectel L76 GNSS library (Pytrack Board)
wget --quiet --no-clobber --directory-prefix ./dist-packages https://raw.githubusercontent.com/andrethemac/L76GLNSV4/b68b3402/L76GNSV4.py
#Install Pytrack Board Libary
wget --quiet --no-clobber --directory-prefix ./dist-packages https://raw.githubusercontent.com/pycom/pycom-libraries/ce0cfa5/pytrack/lib/LIS2HH12.py
#Install Pytrack Board Libary
wget --quiet --no-clobber --directory-prefix ./dist-packages https://raw.githubusercontent.com/pycom/pycom-libraries/0f123c7/pytrack/lib/pytrack.py
#Install BME280 Libary
wget --quiet --no-clobber --directory-prefix ./dist-packages https://raw.githubusercontent.com/catdog2/mpy_bme280_esp8266/d7e052b/bme280.py
# Install and patch "dotty_dict"
# https://github.com/pawelzny/dotty_dict
mkdir -p ./dist-packages/dotty_dict
wget --quiet --no-clobber --directory-prefix ./dist-packages/dotty_dict https://raw.githubusercontent.com/pawelzny/dotty_dict/c040a96/dotty_dict/__init__.py
wget --quiet --no-clobber --directory-prefix ./dist-packages/dotty_dict https://raw.githubusercontent.com/pawelzny/dotty_dict/c040a96/dotty_dict/dotty_dict.py
patch --forward dist-packages/dotty_dict/dotty_dict.py tools/dotty_dict-01.patch || true
patching file dist-packages/dotty_dict/dotty_dict.py
Reversed (or previously applied) patch detected! Skipping patch.
1 out of 1 hunk ignored -- saving rejects to file dist-packages/dotty_dict/dotty_dict.py.rej
# Install OneWire and DS18x20 libraries
# https://github.com/micropython/micropython/tree/master/drivers
mkdir -p ./dist-packages/onewire
touch ./dist-packages/onewire/__init__.py
wget --quiet --no-clobber --directory-prefix ./dist-packages/onewire https://raw.githubusercontent.com/pycom/pycom-libraries/aacafd62/examples/DS18X20/onewire.py
# Install PyCayenneLPP from Git repository.
rm -rf ./.pycayennelpp.tmp
mkdir -p ./.pycayennelpp.tmp
git clone https://github.com/hiveeyes/pycayennelpp ./.pycayennelpp.tmp
Cloning into './.pycayennelpp.tmp'...
remote: Enumerating objects: 222, done.
remote: Total 222 (delta 0), reused 0 (delta 0), pack-reused 222
Receiving objects: 100% (222/222), 44.73 KiB | 0 bytes/s, done.
Resolving deltas: 100% (135/135), done.
Checking connectivity... done.
rm -r ./.pycayennelpp.tmp/cayennelpp/tests
cp -r ./.pycayennelpp.tmp/cayennelpp ./dist-packages/
rm -rf ./.pycayennelpp.tmp
.venv3/bin/rshell --port --buffer-size 2048 --timing mkdir /flash/dist-packages
usage: rshell [options] [command]
rshell: error: argument -p/--port: expected one argument
Makefile:78: recipe for target 'upload-requirements' failed
make: *** [upload-requirements] Error 2
root@XPS13-CGruber:/home/cgruber/hiveeyes/sources/hiveeyes-micropython-firmware#