반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- dataframe
- PostgreSQL
- hive
- c#
- Google Excel
- numpy
- list
- PANDAS
- Mac
- SQL
- GIT
- array
- gas
- django
- Github
- Tkinter
- Kotlin
- Excel
- Redshift
- google apps script
- math
- PySpark
- Python
- Java
- string
- matplotlib
- Apache
- Google Spreadsheet
- 파이썬
Archives
- Today
- Total
달나라 노트
Intel MKL WARNING: Support of Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) enabled only processors has been deprecated. Intel oneAPI Math Kernel Library 2025.0 will require Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions. Err.. 본문
Python/Python Basic
Intel MKL WARNING: Support of Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) enabled only processors has been deprecated. Intel oneAPI Math Kernel Library 2025.0 will require Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions. Err..
CosmosProject 2024. 4. 1. 23:38728x90
반응형
M1 이상의 Macbook으로 Python을 쓰다보면 아래와 같은 에러가 발생할 수 있습니다.
Intel MKL WARNING: Support of Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) enabled only processors has been deprecated. Intel oneAPI Math Kernel Library 2025.0 will require Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions.
M1 칩 때문에 발생하는 에러인데
numpy, matplotlib, pandas 등을 설치하면 자동으로 mkl이라는 모듈이 설치될 수 있습니다.
이때 mkl 모듈이 충돌을 일으켜서 위 에러가 발생하는 것입니다.
따라서 mkl과 mkl-service 모듈을 지우고, nomkl을 먼저 설치한 후, 그 다음 내가 원하는 library(e.g. numpy, matplotlib, pandas 등)를 설치하면 에러가 해결됩니다.
conda remove mkl mkl-service
conda install nomkl
pip uninstall mkl mkl-service
pip install nomkl
728x90
반응형
'Python > Python Basic' 카테고리의 다른 글
Python Basic : __contains__ (문자열 포함 여부 확인) (0) | 2024.11.01 |
---|---|
Python : requests response 한글 깨짐 해결, hex string 변환, bytes utf-8 변환, 크롤링 한글 깨짐 (0) | 2024.04.24 |
Python int : 숫자 형태로 만들기, 16진수를 10진수로 변환, 8진수를 10진수로 변환, 2진수를 10진수로 변환 (10진수로 변환하기) (0) | 2024.03.29 |
Python Basic : Terminal 글자 색상, 배경 색상 입히기 (0) | 2024.03.21 |
Python Basic : RGBA, ARGB 변환 (4) | 2024.03.07 |
Comments