You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Code Highlighting cleaned up and better commented.
Updated `software/install-and-run/windows/native/_index.md` to test
and validate code block processing.
You can install multiple copies of Medley (e.g. different releases) on a single Windows. Simply run the Medley installation app and choose a different ***install_dir*** than any previous Medley installation.
35
36
36
37
Each Medley installation so installed will operate independently of other Medley installations, including having a separate Medley file system.
37
38
38
39
## Update Medley
40
+
39
41
To update any given Medley installation (e.g., to install a new release), download the updated native Medley Windows installer as per Step 1 in the **Install Medley** section above.
40
42
41
43
Run the installer app just downloaded and select the ***install_dir*** for the Medley installation you are updating.
42
44
43
45
The chosen Medley installation will be updated. Any user files (i.e., files created by the user that are not part of the Medley distribution) in the Medley file system will remain intact.
44
46
45
47
## Run Medley
48
+
46
49
Once it is installed, you can start Medley from either a Command window or a Powershell window. You cannot (currently) start Medley from the Start Menu or from an icon on the desktop.
47
50
48
51
From a Command window, type:
49
-
```
52
+
53
+
```powershell
50
54
cd <install_dir>
51
55
medley <flags and options>
52
56
```
53
-
57
+
54
58
Example:
55
59
<imgalt="Start from Command Window"width=500src="../images/windows-native-command.png">
56
-
60
+
57
61
From a Powershell window, type:
58
-
```
62
+
63
+
```powershell
59
64
cd <install_dir>
60
65
cmd /C medley <flags and options>
61
66
```
@@ -71,24 +76,23 @@ This will bring up the Medley environment in a separate Window on your Windows d
71
76
72
77

73
78
74
-
75
-
76
-
77
79
## Use Medley
80
+
78
81
Once Medley is up and running, see [here](/software/using-medley/) for tips on how to navigate and use the Medley environment.
79
82
80
-
To exit Medley, type ```(IL:LOGOUT)``` at any Exec window prompt.
83
+
To exit Medley, type `(IL:LOGOUT)` at any Exec window prompt.
81
84
82
85
## Important Notes
83
-
1. The file system from Medley's perspective differs somewhat from the file system from Window's perspective. Specifically, within Medley, the file system root (i.e., "{DSK}/" or "{UNIX}/") is mapped to the ***install_dir*** in the Windows file system. For example, if ***install_dir*** is ***C:\Users\Frank\Medley1***, then the Medley file known as ***{DSK}\<testdir>testfile.txt*** will be located in the Windows file system at ***C:\Users\Frank\Medley1\testdir\testfile.txt***
86
+
87
+
1. The file system from Medley's perspective differs somewhat from the file system from Window's perspective. Specifically, within Medley, the file system root (i.e., "{DSK}/" or "{UNIX}/") is mapped to the ***install_dir*** in the Windows file system. For example, if ***install_dir*** is ***C:\Users\Frank\Medley1***, then the Medley file known as ***{DSK}\<testdir>testfile.txt*** will be located in the Windows file system at ***C:\Users\Frank\Medley1\testdir\testfile.txt***
84
88
85
89
2. Also, from Medley you can refer to any file on a Windows drive using the reference ***{DSK}/[drive letter]/*** (or equivalently ***{DSK}<[drive letter]>***). For example, ***C:\User\Frank\Downloads\testfile.txt*** in Windows will be ***{DSK}/c/User/Frank/Downloads/testfile.txt*** in Medley.
86
90
87
91
3. Your Medley LOGINDIR will be ***/home/<name>/il*** (or ***<install_dir>\home\\<name>\il*** from the Windows perspective), where ***<name>*** is your Windows username.
88
92
4. Medley code is stored in ***/medley*** (or ***<install_dir>\medley*** from the Windows perspective).
89
93
5. If you want to work with the Medley code using git, etc. You will probably find it easier to work with git within Cygwin rather than work with git in Windows. To work within the Medley-specific Cygwin, within a Powershell or Command window:
@@ -99,4 +103,3 @@ To exit Medley, type ```(IL:LOGOUT)``` at any Exec window prompt.
99
103
This will get you a bash terminal running under the Medley-specific Cygwin - which means that the file names will be the same as in Medley.
100
104
101
105
6. The Medley-specific Cygwin install is rather minimal, so if you find you need other Linux tools to work with the Medley code, the Cygwin setup tool (which also functions as its package manager) is available at ***<install_dir>\cygwin\setup_x86_64.exe*** (in Windows) or at ***/cygwin/setup_x86_64.exe*** (from within Cygwin bash).
0 commit comments