반응형 전체 글209 ImportError: Image transformations require SciPy. Install SciPy. conda list scipy conda install scipy=1.8.1 -c conda-forge 2023. 1. 14. CUDA_ERROR_NO_BINARY_FOR_GPU 환경구성 python 3.8.12 tensorflow-gpu 2.4.1 조치 결과 1. config 설정(실패_적용해도 동일한 에러발생 ) ``` import tensorflow as tf config = tf.compat.v1.ConfigProto() config.gpu_options.allow_growth = True session = tf.compat.v1.Session(config=config) ``` 2. 신규 버전 version 설치 (성공) conda create -n tf_gpu python=3.8.15 python3 -m pip install tensorflow-gpu==2.4.0 conda install pandas 2023. 1. 12. Autohotkey MacOS 방향키 적용 윈도우에서 맥북 방향키 형태 적용 ^Left:: Send {Home} ^Right:: Send {End} +^Left:: Send +{Home} +^Right:: Send +{End} ^Up::Send {Home}{PgUp} ^Down::Send {End}{PgDn} +^Up::Send +{Home}+{PgUp} +^Down::Send +{End}+{PgDn} !Left:: Send ^{Left} !Right:: Send ^{Right} +!Left:: Send +^{Left} +!Right:: Send +^{Right} ^Backspace::Send +{Home}{Backspace} !Backspace::Send, +^{Left}+{Delete} !Delete::Send, ^{Delete} 2022. 9. 23. How do I find files and total their sizes? $ find . -name 'flibble*' -ctime +90 -exec du -sh {} \; 2.1G ./flibble_116.log 2.1G ./flibble_83.log 2.1G ./flibble_211040_157.log 2.1G ./flibble3747_51.log Solution find . -name 'flibble*' -ctime +90 -exec du -shc {} + 2022. 8. 18. 이전 1 2 3 4 ··· 53 다음 반응형