The second step in learning Python: Pycharm Installation Guide (ultra-detailed)


After installation learned Python, install a handy easy to use IDE is naturally essential, as the title says, I chose Pycharm, it JetBrains IDEA belong to the company, the interface is similar, full-featured, it is a good choice.

A, Pycharm installation

(1) First, open Pycharm's official website (https://www.jetbrains.com/pycharm/download/), on the left you can see the latest version, and release time, on the right side provides the Professional Edition and Community Edition downloads, we click the Download Pro download button.
Here Insert Picture Description
(2) After clicking the download page will jump to thank, and pop-up box download, download.
Here Insert Picture Description
It is worth mentioning that this software download speeds much faster than Python, twelve minutes to download.
Here Insert Picture Description
Run the installer after (3) the download is complete, the first page direct the Next
Here Insert Picture Description
(4) Select the installation path, the software take up more memory, it is recommended to create a new pycharm in other disk folders, and pay attention not to the path with Chinese , click next.
Here Insert Picture Description
(5) This step is all the checkboxes, click the Next
①: create a desktop shortcut (64)
②: update the context menu, add item to open the folder as
③: create an association, associate .py file to open pycharm
④: update path variables (requires a restart), add the starter directory to your path
Here Insert Picture Description
(6) this step is to click on install
Here Insert Picture Description
(7) is being installed, the installation is complete you can wait
Here Insert Picture Description
(8) the installation is complete, select the second later restart, click Finish to complete the installation
Here Insert Picture Description


Second, the configuration Pycharm

(1)在桌面上找到刚刚安装好的Pycharm并打开,选择不导入设置,点击OK
Here Insert Picture Description
(2)来到主题设置页面,根据自己喜好选择即可,然后点击右下角Next,或者也可以直接左下角Skip和右上角X来使用默认设置
Here Insert Picture Description
(3)来到Download featured plugins页面,直接start using pycharm就好
Here Insert Picture Description
(4)进入激活页面,可以选择是激活还是试用30天,这里不再详述。
Here Insert Picture Description


三、熟悉的Hello World

完成之后,我们就可以使用pycharm来编写程序了
我怀着激动的心情,在刚才新建的项目中,右键项目名称,New -> Python File,如下图所示
Here Insert Picture Description
在弹出窗口中填写文件名称Hello并回车
Here Insert Picture Description
一个Python文件就新建完成了,我们在这里输入语句

print("Hello World!")

Here Insert Picture Description
然后在空白处右键,选择run ‘Hello’
Here Insert Picture Description
可以看到下面就输出了“Hello World!”,我们的第一个Python就跑起来了!
Here Insert Picture Description


四、写在最后

这是我的第二篇博客,如果这篇博客能给您带来帮助的话,我将十分开心,希望我会继续坚持下去,努力更博,记录我的学习之路。
另外,寒假我也刚刚创立了自己的公众号,名叫:风筝小剧透,我会在上面分享各种影视资源,以及各种有用有趣的软件,还有各种小技巧,黑科技,之后可能也会放一些学习编程的资料,如果大家感兴趣的话,欢迎赏脸点个关注啦!感谢大家的支持!希望共同进步!

发布了2 篇原创文章 · 获赞 3 · 访问量 210

Guess you like

Origin blog.csdn.net/qq_43706969/article/details/104066392