4

So I am trying to submit my CS50 (https://cs50.harvard.edu/x/2020/tracks/mobile/android/fiftygram/) in my terminal by using submit50 cs50/problems/2020/x/tracks/android/fiftygram. I have installed pip3 and CS50 but I keep getting an error zsh:

command not found: submit50

Please help! How do I solve this?

Malakiya sanjay
  • 208
  • 2
  • 12
codelearner
  • 173
  • 8

1 Answers1

1

You also need to install submit50 itself. The instructions are here:

https://cs50.readthedocs.io/submit50/#installation

Edit: given the comment that OP has done this, try updating pip. It may be a version issue after switching to zsh. Alternatively, if you still have another shell use that.

https://unix.stackexchange.com/questions/557185/pip-error-after-changing-from-bash-to-zsh

Sydney Y
  • 2,912
  • 3
  • 9
  • 15
  • 1
    I did install submit50 by pip3 install submit50. And it is installed as I can see it when I do pip3 show submit50. But I when try to submit my work, I get zsh: command not found: submit50 – codelearner Feb 14 '20 at 05:30