Possible to install Raspbian OS on Omega 2+ ?
-
Is it possible to install Raspbian OS on Omega 2+ ?
Actually, I'm working in Raspberry Pi 3 now with all my project codes done in Python. I wish to switch to Omega 2+. Kindly let me know any ways to install Raspbian OS on Omega 2+ or ways to run the Python codes (which is having many Python modules like matplotlib, numpy, etc) without any importing errors.
-
Installing Raspbian is fundamentally impossible because it's made for the Raspberry Pi which is a different baord with an ARM processor. Omega2+ is a MIPS processor. Those are not binary compatible. Although since Raspbian is based on Debian, it could be possible..?
Anyway, since you say you only have Python code, which is by itself portable, your project should still work if you have all needed python libraries installed. If none of your dependencies depend on one particular architecture (ARM), it should work. What exact packages do you have problems installing?
-
I'm finding difficulties in installing modules like matplotlib, numpy, etc through both 'pip install <module name>' and 'opkg install python-modulename' in Omega 2+.
Kindly provide necessary support that will be a great help to use Python easily with importing the necessary modules in Omega 2+.
-
Please check available resources (CPU, RAM, and storage) to appreciate there are major hardware differences.
Getting a little league baseball player to MLB team may not be the right idea.
-
Kindly let me know how to install 'numpy' module of Python in Omega 2+.
Or any alternate ways or light versions for 'numpy' to be used in Omega 2+ there ?
-
You have to experiment to not hit the heavy dose of data processing, floating point math, lack of memory, etc.
Check https://github.com/wadetb/tinynumpy
Also, see https://stackoverflow.com/questions/8289157/alternative-to-scipy-and-numpy-for-linear-algebra
-
How can I install it using console ?
When I try "git clone https://github.com/wadetb/tinynumpy.git", I get the error as follows:
Cloning into 'tinynumpy'...
fatal: unable to access 'https://github.com/wadetb/tinynumpy.git/': ErrorHow to solve this issue ??