Difference between revisions of "Translations:Functional programming/18/en"

From Marek Běhálek Wiki
Jump to navigation Jump to search
(Importing a new version from external source)
(Importing a new version from external source)
 
Line 16: Line 16:
 
These settings save time and space on disk (it will not install GHC while installing packages and [https://www.msys2.org/ MSYS2] for every user).
 
These settings save time and space on disk (it will not install GHC while installing packages and [https://www.msys2.org/ MSYS2] for every user).
 
</li>
 
</li>
<li> Open VS Code and install extensions:
 
* Haskero
 
* Haskell GHCi Debug Adapter Phoityne
 
</li>
 
</ol>
 
=== Installation guide Ubuntu (single users) ===
 
<ol>
 
<li>Perform following commands:
 
<pre class="bash">
 
sudo apt-get install haskell-platform
 
sudo apt-get install haskell-stack
 
sudo snap install code --classic
 
</pre>
 
* ''Optional step'' - Right now (August, 2019) Haskell Platform from Ubuntu repositories contains GHC 8.4.4. Stack current default resolver is lts-14.00. It requires GHC version 8.6.5. It will automatically download this version. To save disk space, you can generate stack global config (for example <code>stack path</code>) and change the global resolver in file <code>~/.stack/global-project/stack.yaml</code> to <code>lts-12.15</code>. Then open file <code>~/.stack/config.yaml</code> and add lines:
 
<pre>
 
system-ghc : true
 
skip-ghc-check: true
 
</pre>
 
</li>
 
<li> Continue with installation of required packages:
 
<pre class="bash">
 
stack install intero phoityne-vscode haskell-dap
 
</pre></li>
 
 
<li> Open VS Code and install extensions:
 
<li> Open VS Code and install extensions:
 
* Haskero
 
* Haskero

Latest revision as of 08:43, 12 August 2019

Installation guide Windows (all users)

This guide assumes, that there is on user, that prepares the development environment for other user.

  1. Download and install Haskell platform from https://www.haskell.org/platform/windows.html
  2. * For stack, use a path accessible to all user (for example c:\stack). Installer adds to user variable PATH a path to executable stack.exe, and adds a new user variable STACK_ROOT. Move these values from user variables to system variables.
  3. Download and install VS Code https://code.visualstudio.com/#alt-downloads. Use the system installer.
  4. Open cmd and type:
    stack install intero phoityne-vscode haskell-dap --system-ghc
    • It will generate some executable files to default location: c:\Users\ -- YOUR NAME -- \AppData\Roaming\local\bin\ move them to the directory with stack.exe.
  5. Open file c:\sr\config.yaml and add lines:
    system-ghc : true
    skip-msys : true
    

    These settings save time and space on disk (it will not install GHC while installing packages and MSYS2 for every user).

  6. Open VS Code and install extensions:
    • Haskero
    • Haskell GHCi Debug Adapter Phoityne