It would help if you included the error message you got.
Kemal Ficici
@Kemal Ficici
Best posts made by Kemal Ficici
-
RE: Cross compiling for Omega 2
Latest posts made by Kemal Ficici
-
RE: [Resolved]Issue Installing Package on Omega2+
@Douglas-Kryder, I found an alternative solution to Errno 28. Here's the reference:
https://community.home-assistant.io/t/rpi-install-keeps-saying-no-space-left-on-device/7863/6sudo mount -o remount,size=100M /tmp
When I expanded /tmp, the error disappeared.
-
docs.onion.io is down
Docs.onion.io seems to be down for some reason. You can view the documentation at github.com/OnionIoT/Onion-Docs in case you needed it.
-
RE: Cross compiling for Omega 2
It would help if you included the error message you got.
-
Issue with urllib3[secure]
I'm trying to run a sample program from assistant-sdk-python, and I keep getting this error
Traceback (most recent call last): File "/usr/bin/googlesamples-assistant-hotword", line 11, in <module> load_entry_point('google-assistant-sdk==0.3.3', 'console_scripts', 'googlesamples-assistant-hotword')() File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", line 570, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2687, in load_entry_point return ep.load() File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2340, in load self.require(*args, **kwargs) File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2363, in require items = working_set.resolve(reqs, env, installer, extras=self.extras) File "/usr/lib/python2.7/site-packages/pkg_resources/__init__.py", line 867, in resolve raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The 'cryptography>=1.3.4; python_version <= "2.7" and extra == "secure"' distribution was not found and is required by urllib3
I have urllib3[secure] installed, with cryptography 2.0.3, so I shouldn't be having any issues. I've tried looking for others with this error, and I can't seem to find a solution. How can I fix this?
-
Can't install with pip?
I've been trying to install Google Assistant gRPC, but I keep getting this error when running pip install --upgrade google-assistant-grpc
Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build- epHKfa/grpcio/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-qwptyY-record/install-record.txt --single- version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-epHKfa/grpcio/
https://pypi.python.org/pypi/google-assistant-grpc
How do I fix this?
-
RE: [Resolved]JamVM package is missing?!
Just realized that lol. Thanks for the help!
-
[Resolved]JamVM package is missing?!
I'm trying to install jamvm on my omega2+, but I keep getting an error:
root@Omega-1401:~# opkg --force-depends install jamvm Unknown package 'jamvm'. Collected errors: * opkg_install_cmd: Cannot install package jamvm.
I need some way to run java programs on the Omega, and I cannot find the package for the Omega anywhere. The package is missing from the Onion Repo, but it used to be there.
https://github.com/OnionIoT/OpenWRT-Packages
This is the original thread I used as a reference in order to install jamvm:
https://community.onion.io/topic/36/java-on-omega-with-wrappers/7How can I run java programs on the Omega?
-
[Resolved]Issue Installing Package on Omega2+
Hi all,
I'm currently working on a Google Assistant project on the Omega 2+, and I keep on coming across an error when trying:python -m pip install google-assistant-sdk[samples]
The error I receive is this:
IOError: [Errno 28] No space left on device
I have a 16GB SD card on the Omega 2+ that I am booting from, so I should have plenty of space. I tried running df -h and this was the output:
Filesystem Size Used Available Use% Mounted on /dev/root 5.5M 5.5M 0 100% /rom tmpfs 61.4M 36.1M 25.3M 59% /tmp /dev/mmcblk0p1 14.8G 964.9M 13.0G 7% /overlay overlayfs:/overlay 14.8G 964.9M 13.0G 7% / tmpfs 512.0K 0 512.0K 0% /dev /dev/mmcblk0p1 14.8G 964.9M 13.0G 7% /tmp/run/mountd/mmcblk0p1
How can I fix this?