-
Notifications
You must be signed in to change notification settings - Fork 102
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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 | ||
|
||
## 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) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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!) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This could probably be reworded to something like:
|
||
* Install into C:\opt (You can use any other place witout spaces in the path.} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use code escaping instead of |
||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This newline is redundant. |
||
|
||
## Trouble shooting | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This line has trailing whitespace and no newline at EOF. |
There was a problem hiding this comment.
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.