I've been trying to find the latest pixel image on this webpage. But I don't know which release is the latest pixel image. Can someone tell me which one is the one?
I have no internet connection on my pi so I cannot run sudo apt-get update
and sudo apt-get dist upgrade
.

- 681
- 5
- 19

- 11
- 7
1 Answers
That web page is looking at the versions of Raspbian. Pixel is a desktop environment. Recently Raspbian Stretch was released and can be seen on the page you referenced by the latest folder date (2017-09-08). So you would be able to get Pixel (the desktop environment for Raspberry Pi) on Stretch or on later versions of Jessie.
According to the Raspberry Pi web site, all you need to do yo update the version of Pixel is run the following commands:
sudo apt-get update
sudo apt-get dist-upgrade
sudo reboot
And you will get the latest version of Pixel. You don't download it separately from Raspbian (Stretch, Jessie or otherwise)
More on this can be found on the Wikipedia entry for Raspbian.
EDIT
Since the question has been edited to clarify that the Pi has no internet connection, I will edit this answer. To install components offline you need to find the .deb and transfer it to
/var/cache/apt/archives/partial
on the Pi, and run
sudo dpkg -i /var/cache/apt/archives/partial/***
where *** is the name of the deb file, as mentioned in this answer
Since there are thousands of deb packages, you'll have to find the required ones for pixel in some of these lists:

- 681
- 5
- 19
-
I don't have internet connection on my pi. How am my supposed to run the update and all? Should I just download it separately using the web site I posted? – Dhiren Oct 23 '17 at 08:49
-
I have edited my answer in response to the editing of your question. Leaving out that offline bit was rather important! – Quintin Balsdon Oct 23 '17 at 09:08
-
Do you know which one is the required ones for pixel because I do not know which to find. – Dhiren Oct 23 '17 at 09:11
-
I really tried looking for you, could you at least give me an up vote for trying here and I'll dig a little deeper? Also - why can't you connect the pi to the internet? – Quintin Balsdon Oct 23 '17 at 09:14
-
I don't have an adapter. – Dhiren Oct 23 '17 at 09:15
-
And I don't have enough reputations to vote you up. Sorry:( – Dhiren Oct 23 '17 at 09:16
-
I'll still try - please do let me know why you can't connect the pi to the internet – Quintin Balsdon Oct 23 '17 at 09:17
-
I do not have an adapter. – Dhiren Oct 23 '17 at 09:18
-
So it's a Pi 0 or a Pi 0 W? You can't connect via Wifi? – Quintin Balsdon Oct 23 '17 at 09:19
-
pi 2. I need to buy an wifi adapter. – Dhiren Oct 23 '17 at 09:29
-
Ok... now if I may ask: how did you install Raspbian? Is Pixel currently running? – Quintin Balsdon Oct 23 '17 at 09:31
-
My friend gave the pi to me. I don't know what it is running on. How to know? – Dhiren Oct 23 '17 at 09:34
-
Ok so what I recommend is you follow the instructions here: https://www.raspberrypi.org/help/noobs-setup/2/ and download from here: https://downloads.raspberrypi.org/NOOBS_latest You'll have everything up to date when you plug the SD card in. – Quintin Balsdon Oct 23 '17 at 09:37
-
I can't use raspbian? – Dhiren Oct 23 '17 at 09:41
-
Noobs stands for "New Out Of the Box" and it's just the installer for Raspbian, to make it easy for people like us :) – Quintin Balsdon Oct 23 '17 at 09:44
-
So this NOOBS gives me raspbian pixel? – Dhiren Oct 23 '17 at 10:22
-
No, it'll give you Raspbian Stretch with a Pixel desktop environment – Quintin Balsdon Oct 23 '17 at 10:41