Can someone help?

So I’m not using code academy for Raspberry PI. However my uncle and I are working on it as a project.
We are trying to download software on it, however we keep getting weird permissive issues telling us we don’t have the permissions to add the software.
Any suggestions?
Thanks!

1 Like

you need root privileges to achieve this, in windows terms, this would be administrator privileges. Lets say you tried:
apt-get install python
now try:
sudo apt-get install python
sudo stands for superuser do, it allows you to run a command a superuser (one time)

4 Likes

We’ll try that! If we have any more problems we’ll ask! Thank you!

1 Like