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
@@ -129,3 +129,30 @@ For discussing the development of the mbed SDK itself (Addition/support of micro
129
129
For every topic regarding the use of the mbed SDK, rather than its development, please post on the [mbed.org forum](http://mbed.org/forum/), or the [mbed.org Q&A](http://mbed.org/questions/).
130
130
131
131
For reporting issues in the mbed libraries please open a ticket on the issue tracker of the relevant [mbed official library](http://mbed.org/users/mbed_official/code/).
132
+
133
+
Setup
134
+
-----
135
+
Skip any step where a compatible tool already exists
136
+
137
+
1. Install [Python 2.7.9 or above](https://www.python.org/downloads/) and make sure it's added to path
138
+
2. Install [Git](https://git-scm.com/downloads) and make sure it's added to path
139
+
3. Install virtualenv in python
140
+
141
+
```
142
+
> git clone https://github.com/mbedmicro/mbed
143
+
> pip install virtualenv
144
+
> virtualenv venv
145
+
>
146
+
```
147
+
148
+
Develop
149
+
-------
150
+
1. Update dependencies and start virtual environment. This should be done everytime you pull new changes
0 commit comments