forked from georgesha/Conditioning_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.html
66 lines (63 loc) · 2.79 KB
/
plugin.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Arduino for rat</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
body {
padding-top: 50px;
padding-bottom: 20px;
}
</style>
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Arduino for rat</a>
<a class="navbar-brand" href="cc.html">Classical conditioning</a>
<a class="navbar-brand" href="fix.html">Fixed ratio</a>
<a class="navbar-brand" href="p.html">Progressive ratio</a>
<a class="navbar-brand" href="v.html">Variable ratio</a>
<a class="navbar-brand" href="sd.html">Discriminative stimuli</a> </div>
<div id="navbar" class="navbar-collapse collapse">
</div>
</div>
</nav>
<div class="container main">
<div class="row">
<div class="col-md-5">
<h1>Plug-ins needed for python</h1>
</div>
</div>
<h3><font color="red">Tkinker</font></h3>
<p>Generally, the python installer itself already have tkinter package.</p>
<p>Test by running <em class="code">import tkinter</em> in command line</p>
<p>If not, follow <a href="http://tkinter.unpythonic.net/wiki/How_to_install_Tkinter">this</a> to install tkinter</p>
<h3><font color="red">pyfirmata</font></h3>
<h4>For windows users</h4>
<p>Use the command <em class="code">pip install pyfirmata</em> to install pyfirmata</p>
<h4>For Mac or Linux users</h4>
<p>Use the command <em class="code">$ sudo pin install pyfirmata</em> to install pyfirmata</p>
<h3><font color="red">Our own package</font></h3>
<p>For the program to run, you also need our own python package</p>
<p>You can get it <a href="https://github.com/zsha2/Conditioning/blob/master/arduino.py">here</a></p>
</div>
<footer>
<p></p>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')
</script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>