cd command in terminal is not working.

Asked by Brandon Perkins

I have started programming python using geany but I want to get used to using python based commands on the terminal. The thing is i can't even use them yet because the cd command doesn't seem to want to work. I created a folder called Python to store all of my python project folders, and I tried using cd in one of two ways:
cd ~/python
cd home/brandon/python
Both times it says the directory doesn't exist. I am using ubuntu through the wubi installer if that helps at all.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu gnome-terminal Edit question
Assignee:
No assignee Edit question
Solved by:
actionparsnip
Solved:
Last query:
Last reply:
Revision history for this message
Best actionparsnip (andrew-woodhead666) said :
#1

Ubuntu is case sensitive, so if the folder has a capital P then the command is:

cd ~/Python

Revision history for this message
Brandon Perkins (ingeniare91-deactivatedaccount) said :
#2

Thanks actionparsnip, that solved my question.