Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install instruction for windows #50

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions INSTALL.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Windows

## Working with

* Windows 7 professional 64bit & Ruby 1.9.3-p125
* Windows XP SP3 32bit & Ruby 1.9.3-p125
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have newer versions of Ruby been tested? Checking if it works in 2.0.x would be very beneficial.


## Install

1. Install [Ghostscript](http://sourceforge.net/projects/ghostscript/) from [gs905w32.exe](http://downloads.sourceforge.net/project/ghostscript/GPL%20Ghostscript/9.05/gs905w32.exe).
2. Install [ImageMagick](http://www.imagemagick.org) from [ImageMagick-6.7.6-3-Q16-windows-dll.exe](http://www.imagemagick.org/download/binaries/ImageMagick-6.7.6-3-Q16-windows-dll.exe)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think these versions are the latest ones any more. A recommendation to use the latest one would probably be a better choice.

* Install dev headers (Check!)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could probably be reworded to something like:

Check the installation option of "Install dev headers"

* Install into C:\opt (You can use any other place witout spaces in the path.}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this still a necessity?

3. Restart your console / comand prompt / IDE / ... or just restart windows to make ImageMagick commands available.
4. Install rmagick
<code>gem install rmagick --platform=ruby -- --with-opt-lib=C:/opt/ImageMagick-6.7.6-Q16/lib --with-opt-include=c:/opt/ImageMagick-6.7.6-Q16/include</code>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use code escaping instead of <code> tags. Please refer to this guide for more information.


Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This newline is redundant.


## Trouble shooting
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line is misspelled.

* The versions of the downloadable software is changing form time to time. Do not give up, if the link is down. Visite the website and look for the next newer version.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line would probably be redundant if you recommended using the latest version right away, as mentioned above.

* Spaces in the installation path of ImageMagick cause serious problems.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As asked above, is this still the case?

* If you installed rmagick to a different path change the path in the gem command as well.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line has trailing whitespace and no newline at EOF.