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: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ The `azdev` tool is designed to aid new and experienced developers in contributi
21
21
22
22
## Setting up your development environment
23
23
24
-
1. Install Python 3.6/3.7/3.8 from http://python.org. Please note that the version of Python that comes preinstalled on OSX is 2.7. Currently it's not recommended to use Python 3.9.
24
+
1. Install Python 3.8/3.9/3.10 from http://python.org. Please note that the version of Python that comes preinstalled on OSX is 2.7.
25
25
2. Fork and clone the repository or repositories you wish to develop for.
26
26
- For Azure CLI: https://github.com/Azure/azure-cli
27
27
- For Azure CLI Extensions: https://github.com/Azure/azure-cli-extensions
@@ -45,10 +45,10 @@ The `azdev` tool is designed to aid new and experienced developers in contributi
45
45
46
46
See [Authenticating with GitHub from Git](https://docs.github.com/github/getting-started-with-github/set-up-git#next-steps-authenticating-with-github-from-git) about caching your GitHub credentials in Git which is needed when you push the code.
47
47
48
-
48
+
49
49
3. Create a new virtual environment forPythonin the root of your clone. You can do this by running:
50
50
51
-
Python 3.6+ (all platforms):
51
+
Python 3.8+ (all platforms):
52
52
```BatchFile
53
53
python -m venv env
54
54
```
@@ -84,11 +84,11 @@ The `azdev` tool is designed to aid new and experienced developers in contributi
84
84
```
85
85
For rpm packages:
86
86
```Bash
87
-
sudo yum install gcc python3-devel
87
+
sudo yum install gcc python3-devel
88
88
```
89
89
90
90
Otherwise you will have `psutil` installation issues (#269) when you setup `azure-cli` later.
91
-
91
+
92
92
Upgrade `pip` on all platforms:
93
93
```
94
94
python -m pip install -U pip
@@ -102,7 +102,7 @@ The `azdev` tool is designed to aid new and experienced developers in contributi
102
102
```
103
103
azdev setup
104
104
```
105
-
105
+
106
106
This will launch the interactive setup process. You can also run with non-interactive options:
0 commit comments