forked from csev-es/py4e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.php
33 lines (31 loc) · 1.3 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
<?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>Creando tu Ambiente de Desarrollo de Python</h2>
<p>
Tenemos páginas separadas para los sistemas operativos más comunes:
</p>
<ul>
<li>
<a href="software-win.php">Creando el Ambiente de Desarrollo de Python en Microsoft Windows</a>
</li>
<li>
<a href="software-mac.php">Creando el Ambiente de Desarrollo de Python en un Macintosh</a>
</li>
<li>
También puedes configurar Python en Windows 10 usando el Subsistema de Windows para Linux (WSL)
si prefieres una experiencia similar a Linux en tu computador Windows.
</li>
</ul>
<p>
¿No puedes o no quieres instalar software en tu computador? Revisa
<a href="https://www.pythonanywhere.com/">PythonAnywhere</a>,
<a href="http://trinket.io">Trinket</a>,
<a href="http://c9.io">Cloud9</a>, o
<a href="http://codeanywhere.com">CodeAnywhere</a>.
</p>
</div>
</div>
<?php include("footer.php"); ?>