Tiny Core Linux
Tiny Core Extensions => TCE Talk => Topic started by: solorin on February 22, 2013, 05:42:08 AM
-
So I find myself having to use a python program.
the easiest path to installation requires pip.
Searching the repo turns up nothing. If some kind soul has already packaged it, please point me in the right direction.
cheerio,
solorin
-
I am not a python user, but anyway... ;) :
tc@box:~$ tce-load -i python-distribute openssl-1.0.0
tc@box:~$ wget http://pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz
tc@box:~$ tar xzf pip-1.2.1.tar.gz
tc@box:~$ cd ./pip-1.2.1
tc@box:~/pip-1.2.1$ python setup.py build
tc@box:~/pip-1.2.1$ sudo python setup.py install --prefix=/usr/local
-
You can install from pypi using easy_install in python-distribute
tc@box:~$ tce-load -i python-distribute
tc@box:~$ easy_install pip
Of course, installing through easy_install OR pip won't survive a reboot without extra effort.