-
[Installation] PyCharm / Anaconda / Visual Studio in Ubuntu 18.04카테고리 없음 2020. 7. 1. 22:13
0. I have
OS : Linux Ubuntu 18.04
1. PyCharm
The PyCharm is installed using just single line of a command below:
$ sudo snap install pycharm-community --classic 2. Anaconda
Download an installer at the official website:
(www.anaconda.com/products/individual)
I choose a "64-bit(x86) Installer (522 MB)" for Python 3.7, Linux.
And then, I installed the Anaconda using a command below at the download directory
$ cd ~/Downloads
$ bash Anaconda3-2020.02-Linux-x86_64.sh3. Visual Studio
There are two ways to install the Visual Studio(VS).
The VS can be installed through several procedure.
For example, installation of "curl", and Adding up "MS gpg", and so on.
However, I installed VS using an installer, which can be downloaded at the official website.
(VS Official websit : https://code.visualstudio.com/)
I pressed a "Download" button on the top-right side of the site.
And, I choose an installer ".deb 64bit" for the Ubuntu Linux system.
After the download is done, change the download directory, and VS is installed using a command below:
$ sudo dpkg -i code*.deb Have a nice research!