-
Notifications
You must be signed in to change notification settings - Fork 2
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
Pip install fails on Windows #19
Comments
Presumably, this line needs os.path.join: https://github.com/htrc/HTRC-PythonSDK/blob/master/setup.py#L39 |
Encountered this again trying to pip install on Anaconda. Per Disutils docs:
https://docs.python.org/3/distutils/setupscript.html In keeping with the format above, the final slashes should be removed from the directory elements in the tuples at: https://github.com/htrc/HTRC-PythonSDK/blob/master/setup.py#L40 |
This worked, thank you!! A fellow in our lab encountered the same install issue using pip install on Anaconda. We downloaded the package locally, and modified data_files to exclude the final slashes. Changed line 87 of setup.py from:
To:
And then installed by running the install script in the command line:
|
This should present pip failure in Windows with Anaconda, as per issue htrc#19
The text was updated successfully, but these errors were encountered: