bash % 인식문제

bash % git clone https://github.com/kim074/practical-python

제가 이렇게 해서 practical-python에 접근하여 제 작업을 저장 등 작업을 이제 시작하려 하는데
아마도 제 pc에서는 현재 bash명령이 듣지 않는 것 같습니다!!

PS C:\Users\com0002\Desktop\pythonworkspace> python
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> bash % git clone https://github.com/kim074/practical-python    
  File "<stdin>", line 1
    bash % git clone https://github.com/kim074/practical-python
               ^
SyntaxError: invalid syntax

kim074 503

M 2020년 8월 16일 11:02 오후

목록으로
2개의 답변이 있습니다. 1 / 1 Page

bash는 Unix 쉘이라 윈도우 환경에서는 사용할 수 없습니다.
그리고 파이썬 쉘 안에서 git clone을 실행할 수도 없구요.

git clone 명령은 그냥 명령창에서 실행하시면 됩니다. (단, 윈도우용 git 클라이언트를 먼저 설치하셔야 하구요.)

박응용

2020년 8월 16일 11:04 오후

감사합니다!!!

kim074

2020년 8월 17일 11:03 오전