Posts

Showing posts with the label linux

[Anaconda Spyder] Error: You have missing dependencies! (rtree)

  Error: You have missing dependencies! rtree>= 0.8.3: None (NOK) Please install them to avoid this message. Note: Spyder could work without some of these dependencies, however to have a smooth experience, we strongly recommend.     업데이트가 필요해서 업데이트하니까 dependency 에러 실화냐 다른놈들은 다 헛소리만 하거나 걍 재설치하라는데 킹갓짜장형이 도와주셨다.   Linux sudo apt install libspatialindex-dev   Windows 10 conda install -c conda-forge libspatialindex conda install -c conda-forge rtree   정말 이거 한줄로 바로 고쳐졌다..ㅠㅠ 감격... https://blog.csdn.net/HaoZiHuang/article/details/110798922

[Ubuntu Server LTS 18.04] unable to correct problems you have held broken packages 에러 (nvidia driver)

휴.. 진짜ㅠㅠ 짜즁나.. 겨우 됐다. $ sudo dpkg --configure -a && sudo apt update --fix-missing && sudo apt install -f && sudo apt full-upgrade 하고 reboot 해준 후 $ sudo ubuntu-drivers autoinstall 하면 바로 고쳐짐... 요즘 스택오버플로우가 나한테 도움을 안준다.. 참조 : https://itectec.com/ubuntu/ubuntu-cant-install-nvidia-driver-430-on-ubuntu-18-04-dell-inspiron-15-5000-gaming-duplicate/

[Ubuntu Server LTS 18.04] "Could not acquire name on session bus" 에러 (feat. xrdp, mate)

리눅스를 거의 처음 접해보는데 이걸 서버로 만들어야해서 엄청난 고생을 하고있다.. GUI버전으로 만들어서 원격접속을 가능하게 해야하는데 이걸 또 어떻게 하지? 구글링 구글링.. 이것저것 깔고 지우고 붙이고 떼고 포멧하고 다시깔고 우여곡절.. 사실 다른사람들은 엄청 쉽게 바로바로 하는거같은데 나만 삽질하느라 이렇게 힘든거같다.. 내가 다운받은 프로그램은 xrdp, xorgxrdp, mate 이고 얘네를 아래 명령어를 차례대로 써서 받았다. $ sudo apt-get install xrdp $ sudo apt-get install -y xorgxrdp $ sudo apt-get install taskesel $ sudo apt-get update $ sudo tasksel install ubuntu-mate-desktop $ sudo apt-get update $ sudo apt-get install mate-core mate-desktop-environment mate-notification-daemon $ sudo sed -i.bak '/fi/a #xrdp multiple users configuration \n mate-session \n' /etc/xrdp/startwm.sh $ service xrdp restart $ sudo reboot 요렇게 해서 윈도우 원격접속을 했눈뎁... 오지게 떠버리는 " Could not acquire name on session bus " !!!!!!!!!!!!!!!!(나쁜말 심한말)!!!!!!!!!!!!!!!! 구글링 중간중간 나오던 솔루션 /etc/xrdp/startwm.sh 파일 맨 밑에 test -x /etc/X11/Xsession && exec /etc/X11/Xsession exec /bin/sh /etc/X11/Xsession 얘네를 #으로 주석처리하고, unset DBUS_SESSION_BUS_ADDRESS exec mate-session 얘네를 붙이라는 글이 ...