You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code_editor/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
You're about to create your first file of code, so it's time to download a code editor!
4
4
5
-
There is a lot of different ones and it really depends on your needs. Most Python programmers use a complex, but super powerful IDE, like PyCharm. But for you, as a beginner, we're recommending something simple, yet powerful.
5
+
There is a lot of different ones and it really depends on your needs. Most Python programmers use complex, but super powerful IDEs (Integrated Development Environment), like PyCharm. But for you, as a beginner, we're recommending something simple, yet powerful.
6
6
7
7
Our suggestions are below, but feel free to ask your coach what is their preference, as it'll be easier to get help from them :)
8
8
@@ -20,6 +20,6 @@ Sublime Text is a very popular editor with a free evaluation period (you can use
20
20
21
21
## Atom
22
22
23
-
Atom is a rather new code editor created by [Github](http://github.com/). It's free, open-sourced, easy to install and use editor, but available only for Mac OS X for now. It'll be available for other systems in the future.
23
+
Atom is rather new code editor created by [Github](http://github.com/). It's free, open-sourced, easy to install and use editor, but available only for Mac OS X for now. It'll be available for other systems in the future.
Copy file name to clipboardExpand all lines: django_installation/README.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@
4
4
5
5
## Virtual environment
6
6
7
-
Before we will install Django, we will make you install something veryhandy and useful, that will help you with keeping everything tidy on your computer. It is possible to skip this step, but we think, that you should start with the best setup possible to save a lot of troubles in the future.
7
+
Before we will install Django, we will make you install something very, very handy and useful, that will help you keeping everything tidy on your computer. It is possible to skip this step, but we think, that you should start with the best setup possible to save a lot of troubles in the future!
8
8
9
-
That's why we want you to create a Virtual environment (also called `virtualenv`). It will isolate things you do from your computer, so you will have everything important in one place. Neat, right?
9
+
That's why, we want you to create a Virtual environment (also called `virtualenv`). It will isolate things you do from your computer, so you will have everything important in one place. Neat, right?
10
10
11
-
All you need to do is find a folder in which you want to create the `virtualenv`, for example your home directory. In Windows it could look like: `C:\Users\Name\` (where `Name` is a name of the user).
11
+
All you need to do is finding a folder in which you want to create the `virtualenv`, for example your home directory. In Windows it could look like: `C:\Users\Name\` (where `Name` is a name of the user).
12
12
13
13
### Windows
14
14
15
-
To create `virtualenv` you need to open the command line `cmd` and type there `C:\Python\python -m venv blog`. It will look like this:
15
+
To create a new `virtualenv` you need to open the console (we already told you how to open it, remember?) and type there `C:\Python\python -m venv blog`. It will look like this:
16
16
17
17
C:\Users\Name> C:\Python34\python -m venv blog
18
18
@@ -34,7 +34,9 @@ for Windows users, or:
34
34
35
35
~$ source blog/bin/activate
36
36
37
-
You will know that you have `virtualenv` started when you see that the prompt in your command line or console looks like:
37
+
for OS X and Linux.
38
+
39
+
You will know that you have `virtualenv` started when you see that the prompt in your console looks like:
38
40
39
41
(blog) C:\Users\Name>
40
42
@@ -48,7 +50,7 @@ Ok, we have all important things in place. We can finally install Django!
48
50
49
51
## Installing Django
50
52
51
-
Now, when you have your `virtualenv` started, you can install Django using PIP. In console/command-line you type `pip install django==1.6.5`.
53
+
Now, when you have your `virtualenv` started, you can install Django using PIP. In console you type `pip install django==1.6.5`.
52
54
53
55
(blog) ~$ pip install django==1.6.5
54
56
Downloading/unpacking django==1.6.5
@@ -64,6 +66,6 @@ Now, when you have your `virtualenv` started, you can install Django using PIP.
64
66
Successfully installed psycopg2
65
67
Cleaning up...
66
68
67
-
That's it! Now you are finally ready to create a Django application.
69
+
That's it! Now you are finally ready to create a Django application! But to do that, you need some nice program to edit the code...
0 commit comments