How to install Intellij IDEA on Ubuntu?

前端 未结 11 2199
無奈伤痛
無奈伤痛 2020-12-12 10:10

I\'m new to Ubuntu and Linux in general. I want to code in Java on my computer, but I\'m having problems installing IntelliJ IDEA on Ubuntu. I have downloaded and extracted

11条回答
  •  醉梦人生
    2020-12-12 10:52

    In a simple manner you can also try to just run a pre-packaged docker with intellij, I found the good job of @dlsniper : https://hub.docker.com/r/dlsniper/docker-intellij/

    you just need to have docker installed and to run :

    docker run -tdi \
           --net="host" \
           --privileged=true \
           -e DISPLAY=${DISPLAY} \
           -v /tmp/.X11-unix:/tmp/.X11-unix \
           -v ${HOME}/.IdeaIC2016.1_docker:/home/developer/.IdeaIC2016.1 \
           -v ${GOPATH}:/home/developer/go \
           dlsniper/docker-intellij
    

提交回复
热议问题