Skip to content

Tag: installation

Installing a graphics library on linux

I’m not a linux expert, and I’m trying to install a 2D graphics library on Ubuntu 10.10. I need to make a 2D display and after a little online research, GooCanvas seems like it will fit the bill. I’m frustrated because it simply won’t install and I don’t get what I am supposed to…

Linux “install” command for wildcard installation

Is there a way to use “install” for installing multiple files at once using a “wildcard” pattern (and still have “install” create the leading directory hierarchy)? I’ve tried several different ways: install -D -t /dest/path /source/path/*.py install -D -t /dest/path/ …