-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
install.php
40 lines (38 loc) · 1.49 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
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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 Python Development Environment</h2>
<p>
We have separate pages for each of the commonly used Systems:
</p>
<ul>
<li>
<a href="software-replit.php">Using Python on Replit</a>
(Cloud / browser based - no installation required)
</li>
<li>
<a href="software-pyaw.php">Using Python on PythonAnywhere</a>
(Cloud / browser based - no installation required)
</li>
<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>
<li>
You can also set up Python under Windows-10 using the Windows Subsystem for Linux (WSL)
if you prefer a Linux-like experience on your windows computer.
</li>
</ul>
<p>
Other cloud-provided Python environments include
<a href="http://trinket.io">Trinket</a>,
<a href="http://c9.io">Cloud9</a>, or
<a href="http://codeanywhere.com">CodeAnywhere</a>.
</p>
</div>
</div>
<?php include("footer.php"); ?>