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

WIP: Add support for Windows #1

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[flake8]
ignore = E121,E123,E126,E226,E24,E704,W503,W504
max-line-length = 100
exclude = tests/*
max-complexity = 10
14 changes: 12 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# python
._*
*.pyc
#test*
.vscode*
*.egg-info

# test
.vscode*

# pip
build
dist

# git
.git
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
global-include *.pp3
global-include *.yaml
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,27 @@ On OSX, [Homebrew](https://brew.sh) can easily be used to install the needed dep

Pip can be used to install the python dependencies needed:

`pip install PyYAML`

`pip install debayer`

### Linux
On Fedora Linux, most dependencies can be installed with the package manager.

`dnf install python rawtherapee pip openimageio dcraw exiftool`

`pip install --user PyYAML`
`pip install debayer`

For other distributions I'm assuming it would be pretty straightforward as well...

### Windows
On Windows you will have to download and install [Python](https://www.python.org/downloads). Make sure to you check the option to "Add Python to PATH".

Install [ImageMagick](https://imagemagick.org/script/download.php#windows) and make sure the "Add application to your system path" option is checked.

You will also have to install [RawTherapee](https://rawtherapee.com) and [ExifTool](https://exiftool.org). Make sure to edit your Windows environment variables to point to the folders holding these binaries.

Debayer can be then installed using PyPi.

`pip install debayer`

## The MIT License
Copyright 2019 Jedediah Smith
Expand Down
Loading