I am a real beginner learning to use Python using Zed Shaw's "Learn Python the Hard Way". Until now, I had no codes that gave me error as long as I typed in exactly the same way, but here in Exercise 46, I am having trouble setting up my skelton project. In the book, it says to type:
$ mkdir -p projects<br/>
$ cd projects/<br/>
$ mkdir skeleton<br/>
$ cd skeleton<br/>
$ mkdir bin NAME tests docs<br/>
I have already checked this Learn Python the Hard Way: Exercise 46 but I could not do the last line "mkdir bin NAME tests docs". It (I am using Windows PowerShell) gives me an error saying:
"mkdir : A positional parameter cannot be found that accepts argument 'Name'.<br/> At line:1 char:6<br/> + mkdir <<<< bin NAME tests docs<br/> + CategoryInfo : InvalidArgument: (:) [mkdir], ParameterBindingException<br/> + FullyQualifiedErrorID : PositionalParamaterNotFound,mkdir<br/>
Could anybody please tell me what is going on and how I can fix this? I am sorry this is really a basic question but is "$ mkdir bin NAME tests docs" trying to make multiple directories named "bin", "NAME", "tests", and "docs"?