Deep learning environment construction - PyCharm installation and configuration

Deep learning environment construction - PyCharm installation and configuration

Insert image description here
参考:
1,https://www.runoob.com/w3cnote/pycharm-windows-install.html

Continuing from the previous chapter, continue to install PyCharm;
Preface:
I have been engaged in FPGA embedded development and image processing related work. Work. At present, with the wave of AI, we are also passively involved in the whirlpool of deep learning. In order not to be sucked into the abyss, we can only learn some knowledge related to deep learning by ourselves. As the saying goes, "a good memory is not as good as a bad writing", let alone people who have already entered the middle school. In the past year, I thought it would be better to record all the steps at work so that I can look them up when I can’t remember them.
To build a deep learning environment, I roughly divided it into four parts based on the software used and my own installation sequence, Anaconda installation and configuration, CUDA and CUDNN installation, Pycharm installation and configuration, and Pytorch installation. configuration. Of course, if you are using TensorFlow or paddlepaddle, you can choose freely during the last installation, or you can install them all and compare which one is better.

1. Download PyCharm:
PyCharm is a powerful Python editor. PyCharm is a development environment designed by programmers for programmers, providing you with what you need for efficient Python development. of all tools. PyCharm provides intelligent code completion, code inspection, real-time error highlighting and quick fixes, as well as automated code refactoring and rich navigation functions. PyCharm integrates with IPython Notebook, provides an interactive Python console, and supports Anaconda and various scientific packages (such as matplotlib and NumPy). It provides a massive set of built-in tools: integrated debugger and tester, Python analyzer, built-in terminal, integration with mainstream VCS, and built-in database tools.
The following will introduce how to install PyCharm under Windows 10;
Download address:
Official website: https://www.jetbrains. com/zh-cn/pycharm/

Go to the homepage and click "Download"
Insert image description here

Select Windows, MacOS, or Linux according to the operating system; select Windows here, because PyCharm has two versions, PyCharm Professional and PyCharm Community Edition.
Professional means the professional version, which is paid. There is only a 30-day free trial. Community is the community version and is free to use. For our development, the community version also meets our needs, so here we choose the community version to download and install.
Insert image description here
2. After the download is completed, find the downloaded file and double-click to open it;
The installation of PyCharm is relatively simple, just follow the next step; < a i=4> Here I modify the installation path Here we choose 32-bit or 64-bit according to our own computer operating system. I believe everyone is currently 64-bit; After the installation is completed, we enter the software interface: Click Install, and then wait quietly for the installation.
Insert image description here

Insert image description here
Insert image description here

Insert image description here


Insert image description here

pycharm Chinese version

Open the file in the upper left corner of pycharm -> Select settings -> Open plugins -> Search for chinese (Chinese plug-in) and select "Install". After the installation is complete, restart pycharm.
Insert image description here

Guess you like

Origin blog.csdn.net/bxlover007/article/details/132894129