분류 전체보기(48)
-
ImportError: IProgress not found. Please update jupyter and ipywidgets.
conda 사용 시: conda install -c conda-forge ipywidgets 참고사이트 https://ipywidgets.readthedocs.io/en/stable/user_install.html Installation — Jupyter Widgets 7.6.5 documentation In most cases, installing the Python ipywidgets package will also automatically configure classic Jupyter Notebook and JupyterLab 3.0 to display ipywidgets. With pip, do: Installing in classic Jupyter Notebook Most of the time,..
2021.12.15 -
ModuleNotFoundError: No module named 'scipy'
sudo apt-get install python-scipy 또는 pip install scipy
2021.11.23 -
ModuleNotFoundError: No module named 'yaml'
pip install pyyaml
2021.11.23 -
Docker permision(권한) 문제
아래의 코드를 실행하면 root 계정으로 컨테이너에 접속한다. docker exec -i -t --user root 컨테이너ID bash ex> docker exec -i -t --user root ce0511aff4f2 bash
2021.11.22 -
PyCharm 아나콘다와 연동하기
파이참에서 우 하단에 있는 "Python 3.6"을 클릭하고 "Interpreter Settings" 클릭 "Show all" 클릭 "Add" 클릭 좌측 목록에서 Conda Environment 선택, 우측 목록에서 Existing environment 클릭 후, 원하는 가상환경 선택(아나콘다에서 생성한 가상환경) ok -> ok -> apply
2021.11.19 -
[Linux] PyCharm 설치
https://www.jetbrains.com/pycharm/download/#section=linux 에서 Professional 설치 (학생은 학교에서 나누어주는 구글 또는 학교이메일로 인증 후 가능합니다. 만약 없으시다면 Community 다운로드 하시면 됩니다.) 탐색기에서 다운로드 폴더로 이동 후, 우클릭 하여 Open in Terminal 클릭하면, 현재위치로 터미널이 열림 (ls, cd 명령문을 이용해서 이동해도 되나, 귀찮음.) tar xvf pycharm-professional-2021.2.3.tar.gz cd pycharm-2021.2.3 cd bin/ sh pycharm.sh
2021.11.19