Переглянути джерело

Switching to PyCharm Educational Edition

https://www.jetbrains.com/pycharm-educational/

via https://twitter.com/filippovdmitry/status/521642814434967552
Swaroop C H 10 роки тому
батько
коміт
ffd00f34a2

+ 15 - 17
first_steps.asciidoc

@@ -68,8 +68,8 @@ One of the very basic requirements is _syntax highlighting_ where all the differ
 Python program are colorized so that you can _see_ your program and visualize its running.
 
 If you have no idea where to start, I would recommend using
-http://www.jetbrains.com/pycharm/[PyCharm Community Edition] software which is available on
-Windows, Mac OS X and GNU/Linux. Details in the next section.
+https://www.jetbrains.com/pycharm-educational/[PyCharm Educational Edition] software which is
+available on Windows, Mac OS X and GNU/Linux. Details in the next section.
 
 If you are using Windows, *do not use Notepad* - it is a bad choice because it does not do syntax
 highlighting and also importantly it does not support indentation of the text which is very
@@ -92,25 +92,25 @@ easy.
 [[pycharm]]
 === PyCharm
 
-http://www.jetbrains.com/pycharm/download/[PyCharm Community Edition] is a free editor which you
-can use for writing Python programs.
+https://www.jetbrains.com/pycharm-educational/[PyCharm Educational Edition] is a free editor which
+you can use for writing Python programs.
 
-When you open PyCharm, you'll see this:
+When you open PyCharm, you'll see this, click on +Create New Project+:
 
-image::pycharm_open.png[When you open PyCharm,440,282]
+image::pycharm_open.png[When you open PyCharm,439,372]
 
-Click on +Create New Project+, and type +helloworld+ as the name of the project, you should see
-details similar to this:
+Select +Pure Python+:
 
-image::pycharm_create_new_project.png[PyCharm project details,475,240]
+image::pycharm_create_new_project.png[PyCharm New Project,439,372]
 
-Click the +OK+ button.
+Change +untitled+ to +helloworld+ as the location of the project, you should see details similar to
+this:
 
-If you see the _Tip of the Day_ dialog box, click the +Close+ button.
+image::pycharm_create_new_project_pure_python.png[PyCharm project details,439,372]
 
-image::pycharm_tip_of_the_day.png[PyCharm Tip of the Day dialog box,714,445]
+Click the +Create+ button.
 
-Right-click on the +helloworld+ in the sidebar and select +New+ -> +Python File+.
+Right-click on the +helloworld+ in the sidebar and select +New+ -> +Python File+:
 
 image::pycharm_new_python_file.png[PyCharm -> New -> Python File,777,494]
 
@@ -142,8 +142,7 @@ new file, remember to just right-click on +helloworld+ on the left -> +New+ -> +
 continue the same steps to type and run as shown above.
 
 You can find more information about PyCharm in the
-http://confluence.jetbrains.com/display/PYH/Getting+Started+with+PyCharm[Getting Started with
-PyCharm] page.
+https://www.jetbrains.com/pycharm-educational/quickstart/[PyCharm Quickstart] page.
 
 === Vim
 
@@ -164,8 +163,7 @@ IDE] article by John M Anderson.
   .. Windows users should get Emacs from http://ftp.gnu.org/gnu/emacs/windows/
   .. GNU/Linux users should get Emacs from their distribution's software repositories, e.g. Debian
   and Ubuntu users can install the http://packages.ubuntu.com/saucy/emacs24[emacs24] package.
-. Use https://github.com/jorgenschaefer/elpy/wiki[ELPY] or https://github.com/bbatsov/prelude[Emacs
-  Prelude] distribution.
+. Install https://github.com/jorgenschaefer/elpy/wiki[ELPY].
 
 === Using A Source File
 

BIN
pycharm_create_new_project.png


BIN
pycharm_create_new_project_pure_python.png


BIN
pycharm_hello_open.png


BIN
pycharm_new_file_input.png


BIN
pycharm_new_python_file.png


BIN
pycharm_open.png


BIN
pycharm_output.png


BIN
pycharm_run.png


BIN
pycharm_tip_of_the_day.png