Compare commits

...

5 Commits

Author SHA1 Message Date
非法操作
fb662e017b Merge 7d9a0b2f06 into 2aee46f169 2024-05-23 02:37:55 -03:00
Julien Le Coupanec
2aee46f169 Merge pull request #381 from FabricioLopees/fix/java
Update readme: fix grammatical error in java.md
2024-04-15 10:53:51 +02:00
FabricioLopees
22977d5ca1 update readme: fix grammatical error in java.md 2024-04-13 13:05:38 -03:00
FabricioLopees
a2c99c9674 update readme: fix grammatical error in java.md 2024-04-13 12:52:16 -03:00
hjlarry
7d9a0b2f06 use venv instead of virtualenv 2022-05-08 23:51:32 -07:00
2 changed files with 9 additions and 10 deletions

View File

@@ -109,12 +109,11 @@ django-admin version # display the current django version
# 1. $ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py; python3 get-pip.py # 1. $ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py; python3 get-pip.py
# 2. $ pip install virtualenv # 2. $ mkdir django-projects
# 3. $ mkdir django-projects # 3. $ cd django-projects
# 4. $ cd django-projects # 4. $ python3 -m venv .venv
# 5. $ virtualenv venv # 5. $ source .venv/bin/activate
# 6. $ source venv/bin/activate # 6. $ pip install django
# 7. $ pip install django # 7. $ django-admin startproject myproject
# 8. $ django-admin startproject myproject # 8. $ django-admin startapp myapp
# 9. $ django-admin startapp myapp # 9. $ python manage.py runserver
# 10. $ python manage.py runserver

View File

@@ -286,7 +286,7 @@ for(dataType item : array) {
### ACCESS MODIFIERS ### ACCESS MODIFIERS
1. defualt(No keyword required) 1. default(No keyword required)
2. private 2. private
3. public 3. public
4. protected 4. protected