Reputation: 1
When I attempt to use the following command in Jupyter shell for Python "cd /Users/Donald/Documents/BUS6303/week 7/ocelma-python-recsys-48df9c4/ocelma-python-recsys-48df9c4/recsys/algorithm" I get a Invalid Syntax" error. What am I doing wrong?
Upvotes: 0
Views: 987
Reputation: 31
I encountered this issue when I added a comment in the same cell. Create a new cell, without a comment, and try it again.
Upvotes: 3
Reputation: 119
Did you verify that the folder actually exists? If so, if could be the space in "week 7". You could try this:
cd "/Users/Donald/Documents/BUS6303/week 7/ocelma-python-recsys-48df9c4/ocelma-python-recsys-48df9c4/recsys/algorithm"
Upvotes: 0