ubuntu(8)
-
Docker) 에러 해결하기 - exec: "docker-credential-desktop.exe": executable file not found in $PATH, out:
윈도우 환경에서 WSL2로 Ubuntu 환경을 만들어 도커를 테스트 하는 도중 발생하는 에러 로그인이 안되는 문제가 발생함. 에러 해결 방법 vi ~/.docker/config.json credsStore 라고 되어 있는 것을 credStore 로 변경 그 다음에 다시 로그인을 실행하니 잘됨. https://forums.docker.com/t/docker-credential-desktop-exe-executable-file-not-found-in-path-using-wsl2/100225 Docker-credential-desktop.exe executable file not found in $PATH using wsl2 Using the latest build of Windows 10 and Docker..
2023.11.10 -
Linux) GLIBCXX_3.4.26 not found 에러 해결하기(100%는 아님)
안된다는 분이 있으셔서, 참고만 하시면 좋을 것 같습니다. - 22.09.30 파이썬 코드를 실행하였는데, 에러가 났고, 이 문제를 해결하는 코드는 다음과 같다. listdc++.so.6 파일에서 GLIBCX 찾기 strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep GLIBCX 설치 방법(Solution) sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get update sudo apt-get install gcc-4.9 ## 설치가 안되고 진행해도 가능 sudo apt-get upgrade libstdc++6 After this is complete, make sure to run the fo..
2022.03.19 -
Error occurred while running `from pyglet.gl import *` 해결하기
in get_screen() 12 # Returned screen requested by gym is 400x600x3, but is sometimes larger 13 # such as 800x1200x3. Transpose it into torch order (CHW). ---> 14 screen = env.render(mode='rgb_array').transpose((2, 0, 1)) 15 # Cart is in the lower half, so strip off the top and bottom of the screen 16 _, screen_height, screen_width = screen.shape /opt/conda/lib/python3.8/site-packages/gym/envs/cl..
2021.09.08 -
[Ubuntu] Pycharm 설치 및 아이콘 만들기
파이참 설치 심볼릭 링크(symbolic link) 생성 (root 계정 필요) (다운로드 한 경로를 찾으시면 됩니다.) (저는 /home/srlee/다운로드/pycharm-community-2020.3.1/ 에 저장을 했습니다. ) ln -s /home/srlee/다운로드/pycharm-community-2020.3.1/bin/pycharm.sh /usr/bin 링크 연결 후 applications에 pycharm 파일 생성 vi /usr/share/applications/pycharm.desktop 파일 생성하고 아래와 같이 작성 Icon 같은 경우 경로에 맞게 잘 해주기 (다운로드 한 경로로 설정) [Desktop Entry] Name=Pycharm Comment=Pychar Integrated D..
2020.12.27 -
ubuntu18.04 에 R 4.0 설치 및 Rstudio Server 설치하기
광고 한 번씩 눌러주세요! 블로그 운영에 큰 힘이 됩니다 :) 도커를 이용해서 ubuntu 18.04 컨테이너 만들기 docker run --ip ##### --rm -p 8886:8886 -it ubuntu /bin/bash apt-get update apt-get install sudo wget vim net-tools sudo apt-get install gnupg gnupg2 gnupg1 18.04 이므로 bionic-40을 해야 한다. R 4.0 설치하기 vi /etc/apt/sources.list ## 추가하기 deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran40/ ## 저장후 vi 닫기 ## update 해서 sources.list ..
2020.04.29 -
TensorFlow gpu cuda 설치 공식 문서 (Windows / Ubuntu 16.04 ,18.04)
Ubuntu 16.04 (CUDA 10) # Add NVIDIA package repositories # Add HTTPS support for apt-key sudo apt-get install gnupg-curl wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_10.0.130-1_amd64.deb sudo dpkg -i cuda-repo-ubuntu1604_10.0.130-1_amd64.deb sudo apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x8..
2019.10.03 -
curl: (5) Couldn't resolve proxy hproxy~~~ 해결법
Flask를 이용해서 RestAPI를 해보려고 하는데, 이런 에러가 떴다. 실제로 검색해보니 ~~~~ 이 부분과 매칭 되는 놈이 걸렸다. env | grep -i proxy 그래서 proxy를 잘 모르지만, 저 놈이 먼가 맵핑이 되어있어서 문제였던 것 같다. 그래서 아래 글에서 제시한 방법으로 해결! unset http_proxy unset ftp_proxy unset https_proxy 하지만 저렇게만 하면 다시 원래대로 돌아옵니다. 그래서 직접 들어가서 설정을 해줘야 합니다. 저는 이렇게 설정을 해주니 그다음부터는 안 해줘도 되더라고요! vi /etc/environment http_proxy = "" https://askubuntu.com/questions/347384/curl-5-couldnt-r..
2019.08.01 -
linux 에서 zip file 여러개 한꺼번에 풀기
## 원하는 것만 풀 때 unzip a.zip b.zip c.zip ## 여러개를 한번에 풀 때 unzip '*.zip' ''를 해줘야 한다!! ## 여러개를 하는데 원하는 폴더에 넣고 싶을 때 다음과 같이 진행하다. unzip '*.zip' -d /home/user/folder/ unzip '*.zip' https://chrisjean.com/unzip-multiple-files-from-linux-command-line/ Unzip Multiple Files from Linux Command Line :: Chris Jean chrisjean.com https://askubuntu.com/questions/518370/extract-several-zip-files-each-in-a-new-folder..
2019.05.16