I am having trouble setting up my project skeleton because now the guide is asking me to use Linux only commands and I'm on Windows. This entire guide up until this project has had no compatibility issues with Windows until a line of code in exercise 46.
I was able to do this:
$ mkdir -p projects
$ cd projects/
$ mkdir skeleton
$ cd skeleton
$ mkdir bin NAME tests docs
I was not able to do this:
$ touch NAME/__init__.py
$ touch tests/__init__.py
('touch' is not recognized as an internal or external command, operable program or batch file.)
I understand this isn't even the hard part of this exercise but the author doesn't provide any words at all about 'touch' or that he is suddenly using Linux.