Following the instructions to install Python and Cython on a machine where Python 3 is already installed.
sudo apt-get update && sudo apt-get install python3-dev cython3 -y
make build-python
sudo make install-python
The first step appeared to execute normally. But the second and third steps return:
howard@atos:~ $ make build-python
make: *** No rule to make target ‘build-python’. Stop.
howard@atos:~ $ sudo make install-python
make: *** No rule to make target ‘install-python’. Stop.
Where can I find these makefiles?
I’m not sure which instructions you are following, but you don’t need to make or make install python when you use apt-get install to install it. It’s just already installed and ready to use
Thank you, Marc. The instructions are on the python page of this project in github!
they don’t apply if you install the package directly, only if you check out the source from github and install it yourself (which you should not do unless you have a reason)
Thank you. I’ll just forge ahead and see if it works. My panels arrived yesterday.
My 5 64x32 panels are connected in a single chain, and the c++ demos work.
I may have missed the part saying Then, in the root directory for the matrix library simply type:" But I don’t recall for sure. In any case, I tried again, and it works. Surely python is already instaled, but perhaps cython3 needed to be added.