forked from RodenLuo/py4e-cn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.php
27 lines (25 loc) · 1 KB
/
install.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php include("top.php");?>
<?php include("nav.php");?>
<div class="hide-for-large" id="mobile-support"></div>
<div id="first-row" class="row">
<div class="small-12 columns">
<h2>Setting up your PythonLearn Devlopment Environment</h2>
<p>
We have separate pages for each of the commonly used Operating Systems:
</p>
<ul>
<li>
<a href="software-win.php">Setting up the Python Environment in Microsoft Windows</a>
</li>
<li>
<a href="software-mac.php">Setting up the Python Environment on a Macintosh</a>
</li>
</ul>
<p>
Can't or don't want to install software on your computer? Check out <a href="http://trinket.io">Trinket</a>,
<a href="https://www.pythonanywhere.com/">PythonAnywhere</a>, <a href="http://c9.io">Cloud9</a>, or
<a href="http://codeanywhere.com">CodeAnywhere</a>.
</p>
</div>
</div>
<?php include("footer.php"); ?>