Installation Instructions: Difference between revisions

From OpenMW Wiki
Jump to navigation Jump to search
(Split Debian and Ubuntu instructions and updated Debian instructions)
(Moved to RTD and linked.)
 
(38 intermediate revisions by 11 users not shown)
Line 1: Line 1:
==Install Original Game==
Installation instructions have moved to our official documentation on [https://openmw.readthedocs.io/en/latest/manuals/installation/index.html ReadTheDocs].


To use OpenMW you need a base ESM file. Currently Morrowind.esm is the only one available; see http://openmw.org/faq/, section '''"Do I need Morrowind?"'''
[[Category:Installation]]
 
''Note'': you do not have to use Wine to install Morrowind data files on Linux. See [[Getting Data Files for Linux Install|this article]] for details.
 
==Install OpenMW==
===The (easier) Binary Way===
 
* Simply get the right archive for your OS here : http://code.google.com/p/openmw/downloads/list
* Extract it
* Launch "omwlauncher.exe" if your are under Windows, or "omwlauncher" if you are under Linux/Mac
* Play!
 
===The (bleeding edge) Source Way===
 
See [[Development_Environment_Setup | Development Environment Setup]] for detailed instructions.
 
After building the engine:
 
* Launch "omwlauncher"
* Play!
 
===The Debian Way===
OpenMW is in the experimental repository of Debian contrib.
 
====Installation instructions for Jessie and Sid====
If you are using Testing (Jessie) or Unstable, simply add this line to your /etc/apt/sources.list:
 
 
<source lang="text" style="overflow:auto">
deb http://ftp.us.debian.org/debian experimental contrib
</source>
 
Optionally replace ftp.us.debian.org with whichever mirror is closest to you.
 
OpenMW can now be installed with a simple:
 
<source lang="text" style="overflow:auto">
# apt-get update
# apt-get install openmw
</source>
 
====Installation instructions for Wheezy====
If you are using Stable (Wheezy), you will need to add both Experimental contrib (in order to access openmw) and Unstable main (in order to access libogre-1.9). You will also want to configure apt so as to never install packages from unstable repository unless explicitly instructed to do so.
 
First, add Experimental contrib and Unstable main to your /etc/apt/sources.list:
 
<source lang="text" style="overflow:auto">
deb http://ftp.us.debian.org/debian experimental contrib
deb http://ftp.us.debian.org/debian unstable main
</source>
 
Optionally replace ftp.us.debian.org with whichever mirror is closest to you.
 
Then, add a policy to your /etc/apt/preferences (create it if it does not already exist):
 
<source lang="text" style="overflow:auto">
Package: *
Pin: release a=unstable
Pin-Priority: 90
</source>
 
Details about apt-pinning:<br />
https://wiki.debian.org/AptPreferences<br />
http://jaqque.sbih.org/kplug/apt-pinning.html
 
OpenMW can now be installed:
 
<source lang="text" style="overflow:auto">
# apt-get update
# apt-get -t unstable install openmw
</source>
 
===The Ubuntu Way===
A [https://launchpad.net/~openmw/+archive/openmw Launchpad PPA] is available. Add it and install OpenMW:
 
<source lang="text" style="overflow:auto">
$ sudo add-apt-repository ppa:openmw/openmw
$ sudo apt-get update
$ sudo apt-get install openmw
</source>
 
===The Arch Linux Way===
The binary package is available in the official [community] Repositories.
 
To install simply run the following as root (or in sudo):
<source lang="text" style="overflow:auto">
# pacman -S openmw
</source>
 
==Running OpenMW==
 
After the installation is complete, run "<code>omwlauncher</code>". You will get an error message stating "Error detecting Morrowind installation". Do not be alarmed, this is perfectly normal. Press the "Browse..." button and navigate to the directory containing the file "Morrowind.esm" and select it. For example, if you have Morrowind installed in Wine via Steam, this file will be located in <code>"~/.wine/drive_c/Program Files/Steam/SteamApps/common/Morrowind/Data Files/"</code>.
 
You will be asked if you wish to import settings from Morrowind.ini. Select "Import", otherwise OpenMW will not work. You do not need to check the box "Include selected masters and plugins". The OpenMW launcher window should now open. Switch to the "Data Files" tab and check the box to the left of "Morrowind.esm". You are now ready to play!

Latest revision as of 01:51, 20 July 2018

Installation instructions have moved to our official documentation on ReadTheDocs.