강의

멘토링

커뮤니티

Inflearn Community Q&A

jintak04010451's profile image
jintak04010451

asked

Introduction to Python for Programming and Data Science

Lab: Installing the Python Interpreter - Miniconda on Windows

bash ./install.sh 오류

Written on

·

232

0

https://imgur.com/wtilQOn

뭘 어떻게 해야 과제 제출이 가능한가요?

pythonbigdata

Answer 2

0

jintak04010451님의 프로필 이미지
jintak04010451
Questioner

miniconda 설치 없어도 가능한 것 같습니다.

pip install --upgrade pip 으로 해결했습니다.

만약 저와 같은 문제로 사람들이 물어보면 이 명령어도 한 번 해보라고 말해주세요

0

TeamLab님의 프로필 이미지
TeamLab
Instructor

아래 처럼 해보실 것을 권장드립니다.

  • miniconda3를 설치합니다(python3.7이 기본입니다.)
  • conda create -n test python=3.6 으로 가상환경을 만듭니다.
  • source activate test로 가상환경을 실행합니다.
  • 치신 명령어인 install.shsubmit.sh로 실행 시켜보시기 바랍니다.

아마 리눅스 버전용 pip로 생기는 문제점으로 생각됩니다. miniconda를 기본 인터프리터로 변경한 후 시도해 보시기 바랍니다.

jintak04010451's profile image
jintak04010451

asked

Ask a question