반응형

error 3

[Python Error] Mac Homebrew 설치 / Run these two commands in your terminal to add Homebrew to your PATH: (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"')

==> Next steps:- Run these two commands in your terminal to add Homebrew to your PATH: (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users//.zprofile eval "$(/opt/homebrew/bin/brew shellenv)"- Run brew help to get started- Further documentation: https://docs.brew.shmac에서 homebrew 설치하려다보면 이런 스텝에 따르라는 내용이 뜨는데사실 이는 오류가 아닌 다음 단계 두 가지만 더 하라는 것이다. 터미널을 열고 다음 명령어를 입력하여 Homebrew를..

Python/Python Error 2024.06.18

[Python Error] NameError: name 'sort' is not defined /csv정렬/ sorted()

csv를 읽어서 sort() 정렬하려하는데 NameError: name 'sort' is not defined 라고 뜬다면?error 이유 : sort() 메서드는 파이썬 리스트에만 적용된다.여기서 csv_name은 디렉토리 내 CSV 파일의 이름을 포함하는 리스트로 정의했다.csv 리스트를 정렬하려면 sorted() 함수를 사용해야 한다. import pandas as pdimport oscsv_name = os.listdir('/Users/minsun/Downloads/R2C2/label/csv_file')print(sorted(csv_name)) #수정한곳​  이렇게 하면 csv_name 리스트의 요소들이 정렬된 새로운 리스트로 출력된다.

Python/Python Error 2024.06.05
반응형