How to install on Windows here
As of October 13, 2020, the Python 3.9 version of Miniconda has not yet been released. So this article uses Python 3.8 series.
This article will be revised as Miniconda supports 3.9. However, I think that the installation method will not change even if it becomes 3.9.
October 13, 2020
The versions of Windows 10 that have been verified are as follows.
The version to be installed is as follows.
--Miniconda (Python 3.8 version)
If this article is out of date, the steps below may differ from the latest installation steps.
Miniconda
(1) Please access https://docs.conda.io/en/latest/miniconda.html.
(2) Click [Miniconda2 Windows 64-bit] in [Python 3.8].
(3) Double-click the downloaded EXE file.
(4) Click [Next].
(5) Click [I Agree].
(6) If you want to install only for the current user, select [Just Me] and click [Next].
(7) Click [Next].
(8) Click [Install].
(9) Click [Next].
(10) Uncheck all the boxes and click [Finish].
(1) Start [Anaconda Prompt] from the start menu.
(2) Execute python --version
. If it is displayed as below, it is successful.
PyCharm
(1) Please access https://www.jetbrains.com/ja-jp/pycharm/download/.
(2) Click the [Download] button in [Community].
(3) Double-click the downloaded EXE file. When [User Account Control] is displayed, click [Yes].
(4) Click [Next].
(5) Click [Next].
(6) Check [64-bit launcher] and click [Next].
(7) Click [Install].
(8) Check [Run PyCharm Community Edition] and click [Finish].
(1) Check [I confirm that I have read and accept the terms of this User Agreement] and click [Continue].
If you did not check Run PyCharm Community Edition at the end of the installation, double-click the PyCharm icon on your desktop to launch it.
(2) Click [Send Anonymous Statistics] if you agree to anonymously send statistics to JetBrains, or click [Don't Send] if you do not.
(3) Select the theme of your choice from [Darcula] or [Light] and click [Next: Featured plugins].
(4) Click [Start using PyCharm] as it is.
(1) Click [Configure]-[Settings].
(2) Select [Python Interpreter] from the menu on the left side of the screen → click the gear icon on the right side of the screen → click [Add ...].
(3) Select [System Interpreter] from the menu on the left side of the screen → click [...] on the right side of the screen, select "C: \ Users \ user name \ miniconda3 \ python.exe", and click [OK] → Click OK.
(6) Select [Editor]-[File Encodings] → Change [Project Encoding] to [UTF-8].
(7) Click [OK].
Please refer to [this article](https://qiita.com/suke_masa/items/f9af0fb84ad9447ae961#intellij-idea is not required).
The explanation of the setting of IntelliJ IDEA (IDE for Java) is the same for PyCharm.
(1) Click [New Project].
(2) Enter an appropriate path in [Location] → select [Existing interpreter] → check [Create a main.py welcome script] and click [Create].
(3) Check [Don't show tips] and click [Close].
(4) Right-click in main.py and click [Run'main'].
(5) If [Hi, PyCharm] is displayed, it is successful.
Recommended Posts