You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.
Super lame and minor issue, but thought I'd log anyways. In README.md, there are curved quotes for the python -c call that don't work. They actually need to be straight quotes.
Super lame and minor issue, but thought I'd log anyways. In README.md, there are curved quotes for the python -c call that don't work. They actually need to be straight quotes.
Doesn't work:
python -c “import sys; print sys.path;”
Errors out:
File "", line 1
“import
^
SyntaxError: invalid syntax
-bash: print: command not found
-bash: ”: command not found
Should be:
python -c "import sys; print sys.path"
The text was updated successfully, but these errors were encountered: