-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
117 lines (98 loc) · 4.83 KB
/
help.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>SimCav - Downloads</title>
<meta charset="UTF-8">
<!--<meta name="viewport" content="width=device-width, initial-scale=1">-->
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" media="(max-width: 899px)" href="main-other800.css">
<link href="main-other.css" media="(min-width: 900px)" rel="stylesheet" />
<link rel="icon" href="logo1.png">
<!-- ICONS -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">
<!-- FONTS -->
<!-- Title -->
<link href="https://fonts.googleapis.com/css?family=Lora" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Merriweather" rel="stylesheet">
<!-- NavBar -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Body -->
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<!-- ===================================================================== -->
<!-- Analytics -->
<!-- ===================================================================== -->
<!-- Matomo -->
<script type="text/javascript">
var _paq = _paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
_paq.push(["setCookieDomain", "*.simcav.org"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//data.simcav.org/matomo/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<a id="Back" href="/#Downloads"><i class="fa fa-home"></i><p>Home</p></a>
<div id="mainDiv">
<h2>Installation</h2>
<p>
Begin by simply <a href="https://gitlab.com/simcav/simcav/raw/master/simcav_installer.py?inline=false">downloading the installer</a>:
</p>
<ul>
<li>
Windows:<br>
Double click the file. Alternatively, right click > open with... > Python (python.exe).
</li>
<li>
Linux:<br>
<a href="https://askubuntu.com/questions/35478/how-do-i-mark-a-file-as-executable-via-a-gui">Grant the file execution rights</a> and double click it.
</li>
</ul>
<p>
Alternatively, run it manually from a console:
</p>
<p><code>
python simcav_installer.py
</code></p>
<p>
An installer is provided for Linux and Windows from version 4.8.3. It downloads SimCav files from GitLab repository (master branch). All the files are saved in a folder called SimCav in the user directory. Uninstall is as easy as deleting this folder. Shortcuts in the desktop and in the start menu are also created.
</p>
<h3>Ubuntu and similar</h3>
<p>
SimCav may not appear in the applications menu. Go to '.local/share/applications' and open 'SimCav.desktop with a text editor. Substitute 'python' with 'python3'. Save, close and give the file execution rights.
</p>
<p>
If a file called 'SimCav.desktop' appears on the desktop, instead of a launcher, simply right-click on it and choose 'allow launching'. You may need to open it with a text editor and substitute 'python' with 'python3'.
</p>
<h2>Requeriments</h2>
<p>
Python 3 and pip are both required for the installer to work. This makes SimCav installation truly lightweight (under 10 MB). Other required modules will be installed in the user environment using pip.
<a href="https://wiki.python.org/moin/BeginnersGuide/Download">How to install python</a>.
</p>
<p>Current required external modules for installation (automatically installed by the installer):
<ul>
<li>numpy</li>
<li>matplotlib (>2.2)</li>
<li>requests</li>
<li>winshell (only for Windows)</li>
</ul>
</p>
<h2>Portable version</h2>
<p>
Self contained version of SimCav including the Python interpreter. Simply download and unzip at your preferred location. Then run the SimCav file.
</p>
<h2>Running the source code</h2>
<p>
The main file is simcav_main.py. Of course the rest of the source files are also needed. You need Python 3.x installed in your computer.
</p>
</div>
</body>
</html>