Dev record
-
Conda 환경 사용을 하려고 conda activate 명령어를 실행하였지만 작동하지 않을 경우 다음과 같은 오류가 발생한다.CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.이럴 경우 다음과 같은 순서로 해결했다.conda init bash그 다음 터미널을 끈 다음 다시 실행하고 원하는 콘다 환경을 실행한다.conda activate $your_conda_env_name
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.Conda 환경 사용을 하려고 conda activate 명령어를 실행하였지만 작동하지 않을 경우 다음과 같은 오류가 발생한다.CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.이럴 경우 다음과 같은 순서로 해결했다.conda init bash그 다음 터미널을 끈 다음 다시 실행하고 원하는 콘다 환경을 실행한다.conda activate $your_conda_env_name
2024.07.02 -
문제 상황 OpenCV가 설치되어 있지 않아 모듈을 import 할때 오류 발생 ModuleNotFoundError: No module named 'cv2' 해결 방안 아래의 명령어로 OpenCV를 설치한다. pip install opencv-python
ModuleNotFoundError: No module named 'cv2'문제 상황 OpenCV가 설치되어 있지 않아 모듈을 import 할때 오류 발생 ModuleNotFoundError: No module named 'cv2' 해결 방안 아래의 명령어로 OpenCV를 설치한다. pip install opencv-python
2024.02.25 -
문제 상황 ModuleNotFoundError: No module named 'skimage' scikit learn의 image 패키지가 설치되어 있지 않아 발생하는 문제 해결 방법 pip install scikit-image scikit-image 패키지를 설치하면 된다
ModuleNotFoundError: No module named 'skimage'문제 상황 ModuleNotFoundError: No module named 'skimage' scikit learn의 image 패키지가 설치되어 있지 않아 발생하는 문제 해결 방법 pip install scikit-image scikit-image 패키지를 설치하면 된다
2024.02.04 -
문제 상황 ModuleNotFoundError: No module named 'skimage' scikit learn의 image 패키지가 설치되어 있지 않아 발생하는 문제 해결 방법 pip install scikit-image scikit-image 패키지를 설치하면 된다
ModuleNotFoundError: No module named 'skimage'문제 상황 ModuleNotFoundError: No module named 'skimage' scikit learn의 image 패키지가 설치되어 있지 않아 발생하는 문제 해결 방법 pip install scikit-image scikit-image 패키지를 설치하면 된다
2024.02.04 -
문제 상황 DecompressionBombWarning: Image size (139213872 pixels) exceeds limit of 89478485 pixels, could be decompression bomb DOS attack. PIL 에서 이미지 처리를 하는 코드를 사용하는데 위와 같이 무서운 오류가 뜬다. 다른건 아니고 처리하려는 이미지의 크기가 너무 커서 발생하는 경우다. 해결 방법 from PIL import Image Image.MAX_IMAGE_PIXELS = None 위와 같이 PIL 패키지에서 최대 이미지 픽셀값을 None으로 처리하면 해결된다.
DecompressionBombWarning: Image size (139213872 pixels) exceeds limit of 89478485 pixels, could be decompression bomb DOS attack.문제 상황 DecompressionBombWarning: Image size (139213872 pixels) exceeds limit of 89478485 pixels, could be decompression bomb DOS attack. PIL 에서 이미지 처리를 하는 코드를 사용하는데 위와 같이 무서운 오류가 뜬다. 다른건 아니고 처리하려는 이미지의 크기가 너무 커서 발생하는 경우다. 해결 방법 from PIL import Image Image.MAX_IMAGE_PIXELS = None 위와 같이 PIL 패키지에서 최대 이미지 픽셀값을 None으로 처리하면 해결된다.
2024.02.04 -
문제 상황 jupyter notebook 이 환경에서 꼬여서 이런 오류가 발생한다. 이를 먼저 삭제한 이후 conda 환경에서 다시 설치한다. 삭제 python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient ipykernel ipynb 주피터 노트북 재설치 conda install -c conda-forge --update-deps --force-reinstall ipykernel -y
The kernel failed to start due to the missing module 'typing_extensions'. Consider installing this module.문제 상황 jupyter notebook 이 환경에서 꼬여서 이런 오류가 발생한다. 이를 먼저 삭제한 이후 conda 환경에서 다시 설치한다. 삭제 python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient ipykernel ipynb 주피터 노트북 재설치 conda install -c conda-forge --update-deps --force-reinstall ipykernel -y
2023.11.14