forked from andre-wojtowicz/py4e-pl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.php
35 lines (32 loc) · 1.11 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
<?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>Jak skonfigurować swoje środowisko programistyczne?</h2>
<p>
Poniżej znajdują się instrukcje pokazujące w jaki sposób zainstalować
Pythona na najpopularniejszych systemach operacyjnych oraz w środowiskach
chmurowych:
</p>
<ul>
<li>
<a href="software-win.php">Windows</a>
</li>
<li>
<a href="software-mac.php">macOS</a>
</li>
<li>
<a href="software-pyaw.php">PythonAnywhere</a>
(chmura/przeglądarka; nie wymaga instalacji)
</li>
</ul>
<p>
Inne środowiska chmurowe:
<a href="https://trinket.io">Trinket</a>,
<a href="https://c9.io">Cloud9</a>,
<a href="https://codeanywhere.com">CodeAnywhere</a>.
</p>
</div>
</div>
<?php include("footer.php"); ?>