Tinycore Cheat Sheet
Louis (LoƩ) BERTRAND
https://github.com/louisgjbertrand https://louisbertrand.studio

2024/03/03 (yyyy/mm/dd)


Install Pip in tinycore Core (Textmode)


Introduction

Pip seams to fail to install properly using the python3.6-pip package from tinycore.
this cheat sheet will help you install any other version of pip if the 



Cheat sheet content

To install properly, first install the python package of your choice (python3.6,
python3.9 etc...) with the following line:


    tce-load python3.9


this will install python 3.9 on your tinycore



in the official pip documentation we can find that python comes with ensurepip
module which help installing pip.

" Python comes with an ensurepip module[1], which can install pip in a Python environment. "
(https://pip.pypa.io/en/stable/installation/)

to install simply execute the following command:


    python3 -m ensurepip --upgrade


now verify your installation by executing


    pip3 -V


if your installation is complete you should see something like

pip 23.x.x from /install/path