Apps :: OK so where is the "help me" area?



OK so I booted up DSL, downloaded Python, then using the xshell I looked in /mnt/sda1/mydsl.  All the Python files were in there.  I then checked /usr/local/bin.  The Python files were in there as well.  What gives?  I tried
Code Sample
mv python /mnt/sda1/mydsl
from the /usr/local/bin directory.  I haven't the permission to do that.  I did it inside root, then with sudo first and then with sudo su first.  Nothing.  

I think I need to switch screen names with you.  It fits me better.

You tried to move the actual python binary, not the extension. As the extension is already in your mydsl folder, it will auto-load on boot.
/usr/local/bin/python is the Python executable file (a.k.a. a binary file). In Windows, it might be named python.exe.
An installation of Python consists of many files and directories, not just the executable itself. For example, the /usr/local/lib/python/ directory, which contains many text files defining misc. functions (system functions, file operations, networking, etc) in Python. All those files must be present for all of Python's features to work. Without those files in /usr/local/lib/python/ in place, you will still be able to run python (a.k.a. the Python interpreter), but many important functions will not work.

On the other hand, an 'extension' (e.g. python2.5.unc) is a 'software package'. It contains all the many different files Python needs to run; including, but not limited to, /usr/local/bin/python.

Definitions of package:
- a collection of things wrapped or boxed together
- a wrapped container
- box: put into a box; "box the gift, please"
- (Computing) A package is a compressed file in a distribution specific format. It contains the files for a particular program you want to install.
(From:
http://www.google.com/search?q=define:package)
So, an 'extension' could be thought of as an 'add-on package'.
As far as I know, only DSL users refer to packages as "extensions" - other Linux distributions call their packages "packages".


original here.