Skip to content

Instantly share code, notes, and snippets.

@khirotaka
Last active August 14, 2020 04:56
Show Gist options
  • Save khirotaka/8e7c7db00f938a2de2d2c4e0d6ef4c57 to your computer and use it in GitHub Desktop.
Save khirotaka/8e7c7db00f938a2de2d2c4e0d6ef4c57 to your computer and use it in GitHub Desktop.

Install Miniconda on server

Download

$ curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

Run install script

$ chmod u+x Miniconda3-latest-Linux-x86_64.sh
$ ./Miniconda3-latest-Linux-x86_64.sh

ライセンスの同意

Welcome to Miniconda3 py38_3.8.3

In oder to continue the installation process, please review the license agreement.
Please, press ENTER to continune
>>>

....


Do you accept the license terms? [yes|no]
[no] >>> yes

Miniconda3 will now bew installed into this location:
/home/USERNAME/miniconda3

....

[/home/USERNAME/miniconda3] >>> ENTER KEY

...

Do you wish the installer to initialize Miniconda3
by running conda init? [yes|no]

[no] >>> yes

$ source .bashrc

Install PyCharm Professional

Create JetBrains Account

以下のサイト

以下のサイトの 方法1

https://blog.jetbrains.com/ja/2019/08/22/2105/

を参考に、JetBrains Student Packに申し込んでください。10分以内に学番アドレスにJetBrains社からメールが届きます

Download JetBrains Toolbox App

自身のPCにJetBrains Toolbox Appをダウンロード。

https://www.jetbrains.com/ja-jp/toolbox-app/

作成したJetBrainsアカウントでログインしてください。

Install PyCharm Professional

インストールしたJetBrains Toolboxを開いて、 PyCharm Professional をインストールしてください。

SSH Interpreter

Create virtual environment on server

conda create -n workspace python=3.7
conda activate workspace
which python

Create Python project

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment