-2

I'm trying to follow this YouTube tutorial https://www.youtube.com/watch?v=XsHmtuXucqY for generating some text with GPT-2 and I'm having trouble with executing the command git clone https://github.com/openai/gpt-2.git. Anaconda gives me an error message that reads: 'git' is not recognized as an internal or external command, operable program or batch file. Help would be appreciated.

sixten
  • 1
  • 2
  • Either your git is not installed or you need to set environment variables to make sure it is accessible outside the installation directory. – infiniteLearner Aug 21 '21 at 12:12

1 Answers1

2

You need to install git either using an installer or using conda:

conda install git
James
  • 32,991
  • 4
  • 47
  • 70