makuto / Liked-Saved-Image-Downloader

Save content you enjoy!
https://macoy.me/code/macoy/Content-Collector
MIT License
89 stars 10 forks source link

OSX - Python doesn't recognize file #1

Closed SonOfASelkie closed 8 years ago

SonOfASelkie commented 8 years ago

I have everything installed (Pip, Praw, Python (obviously ;D) and downloaded, edited the redditUserImageScraper.py to fit my needs...but when i type python redditUserImageScraper.py into terminal it spits back "No such file or directory"

makuto commented 8 years ago

Are you in the same directory as the .py file? On May 28, 2016 5:06 PM, "7Arach7" notifications@github.com wrote:

I have everything installed (Pip, Praw, Python (obviously ;D) and downloaded, edited the redditUserImageScraper.py to fit my needs...but when i type python redditUserImageScraper.py into terminal it spits back "No such file or directory"

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1, or mute the thread https://github.com/notifications/unsubscribe/ACz08o6U4JG8UrnaFWTjGKqCOkbJLHKdks5qGNiggaJpZM4IpLrp .

SonOfASelkie commented 8 years ago

No idea (very new to this)...how would I check that?

makuto commented 8 years ago

So, in the terminal, you type LS To see where you are. You then type CD

To move to a folder. For example:

Ls Pictures Downloads CD Downloads Ls MyScript.py Cat.png Python MyScript.py Hello World!

You need to CD to where the script is. Also, you may be able to find it in your file explorer, right click copy it, then type python in your terminal and right click paste it On May 28, 2016 5:20 PM, "7Arach7" notifications@github.com wrote:

No idea (very new to this)...how would I check that?

— You are receiving this because you commented.

Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222335805, or mute the thread https://github.com/notifications/unsubscribe/ACz08pORFLlGn_H0SowQDUIXDUhMCPS9ks5qGNvngaJpZM4IpLrp .

SonOfASelkie commented 8 years ago

Okay I managed to navigate there in python, and it's now letting me do python redditUserImageScraper.py

However, there is now a new issue- File "redditUserImageScraper.py", line 1 SyntaxError: Non-ASCII character '\xa9' in file redditUserImageScraper.py on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details

SonOfASelkie commented 8 years ago

Also, slightly unrelated - is there a way to disable downloading like links (and just saved), and where do these files go?

makuto commented 8 years ago

First, to make it so that it only does saved images, open imageSaver.py in a text editor and add a '#' in front of lines 53, 57, 60, and 63.

As for the SyntaxError, Copy paste this:

-- coding: utf-8 --

Into the the very top of the script (on it's own line). You may have to do that for the other two scripts as well.

On Sat, May 28, 2016 at 5:47 PM, 7Arach7 notifications@github.com wrote:

Also, slightly unrelated - is there a way to disable downloading like links (and just saved), and where do these files go?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222336465, or mute the thread https://github.com/notifications/unsubscribe/ACz08iqeeyst3GjrTZ7EzYm-U5jwLp4Jks5qGOIEgaJpZM4IpLrp .

-Macoy Madson

SonOfASelkie commented 8 years ago

Okay thanks for that!

More issues...ugh...I can now do python redditUserImageScraper.py and it will work, but it says that File "redditUserImageScraper.py", line 3, in import scraper File "/Users/Ronan/Desktop/redditLikedSavedImageDownloader-master/scraper.py", line 1, in import praw ImportError: No module named praw

And I know that I have praw

makuto commented 8 years ago

You installed praw via pip?

On Sat, May 28, 2016 at 6:45 PM, 7Arach7 notifications@github.com wrote:

Okay thanks for that!

More issues...ugh...I can now do python redditUserImageScraper.py and it will work, but it says that File "redditUserImageScraper.py", line 3, in import scraper File "/Users/Ronan/Desktop/redditLikedSavedImageDownloader-master/scraper.py", line 1, in import praw ImportError: No module named praw

And I know that I have praw

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222338021, or mute the thread https://github.com/notifications/unsubscribe/ACz08nZmnTfsZeJk0qMmcXbZsNVlE-t1ks5qGO_VgaJpZM4IpLrp .

-Macoy Madson

SonOfASelkie commented 8 years ago

Yes

makuto commented 8 years ago

Type just "python" in the terminal. I want to see what version you're using.

On Sat, May 28, 2016 at 6:59 PM, 7Arach7 notifications@github.com wrote:

Yes

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222338373, or mute the thread https://github.com/notifications/unsubscribe/ACz08nVBdSEN0PiHwUsP0HJsGI9IHMpaks5qGPLygaJpZM4IpLrp .

-Macoy Madson

SonOfASelkie commented 8 years ago

Python 2.7.10 (default, Oct 23 2015, 18:05:06) [GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin Type "help", "copyright", "credits" or "license" for more information.

makuto commented 8 years ago

Try pip2 install praw

And run the script again

On Sat, May 28, 2016 at 7:07 PM, 7Arach7 notifications@github.com wrote:

Python 2.7.10 (default, Oct 23 2015, 18:05:06) [GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin Type "help", "copyright", "credits" or "license" for more information.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222338609, or mute the thread https://github.com/notifications/unsubscribe/ACz08vLvXVL51aBehTLtfFpPmc4iHwxrks5qGPT7gaJpZM4IpLrp .

-Macoy Madson

SonOfASelkie commented 8 years ago

giving me syntax errors

makuto commented 8 years ago

Copy and paste them and I'll help you figure them out.

On Sat, May 28, 2016 at 7:15 PM, 7Arach7 notifications@github.com wrote:

giving me syntax errors

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222338821, or mute the thread https://github.com/notifications/unsubscribe/ACz08vp_mynXazcWO5JwOHybr_HDEUhqks5qGPbPgaJpZM4IpLrp .

-Macoy Madson

SonOfASelkie commented 8 years ago

pip2 instal praw File "", line 1 pip2 instal praw ^ SyntaxError: invalid syntax

SonOfASelkie commented 8 years ago

Oh and BTW thank you so much for the help

makuto commented 8 years ago

Sorry, enter that pip2 install praw into the Terminal, not the script.

On Sat, May 28, 2016 at 7:16 PM, 7Arach7 notifications@github.com wrote:

Oh and BTW

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222338857, or mute the thread https://github.com/notifications/unsubscribe/ACz08uNF3THVJEXxLsmVi32VG3SJAyVtks5qGPcRgaJpZM4IpLrp .

-Macoy Madson

SonOfASelkie commented 8 years ago

pCollecting praw ip2 Using cached praw-3.5.0-py2.py3-none-any.whl Collecting six==1.10 (from praw) Using cached six-1.10.0-py2.py3-none-any.whl ^R pipCollecting decorator<4.1,>=4.0.9 (from praw) Using cached decorator-4.0.9-py2.py3-none-any.whl Collecting requests>=2.3.0 (from praw) ^R Using cached requests-2.10.0-py2.py3-none-any.whl Collecting update-checker==0.11 (from praw) Using cached update_checker-0.11-py2.py3-none-any.whl Installing collected packages: six, decorator, requests, update-checker, praw Found existing installation: six 1.4.1 DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project. Uninstalling six-1.4.1: Exception: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/commands/install.py", line 317, in run prefix=options.prefix_path, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_set.py", line 736, in install requirement.uninstall(auto_confirm=True) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 742, in uninstall paths_to_remove.remove(auto_confirm) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_uninstall.py", line 115, in remove renames(path, new_path) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/utils/init.py", line 267, in renames shutil.move(old, new) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move copy2(src, real_dst) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 131, in copy2 copystat(src, dst) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 103, in copystat os.chflags(dst, st.st_flags) OSError: [Errno 1] Operation not permitted: '/var/folders/29/gkg89j_x39q7gn7236p6h2s00000gp/T/pip-VG8k71-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info'

spit that back out to me

makuto commented 8 years ago

Try sudo pip2 install praw

On Sat, May 28, 2016 at 7:21 PM, 7Arach7 notifications@github.com wrote:

pCollecting praw ip2 Using cached praw-3.5.0-py2.py3-none-any.whl Collecting six==1.10 (from praw) Using cached six-1.10.0-py2.py3-none-any.whl ^R pipCollecting decorator<4.1,>=4.0.9 (from praw) Using cached decorator-4.0.9-py2.py3-none-any.whl Collecting requests>=2.3.0 (from praw) ^R Using cached requests-2.10.0-py2.py3-none-any.whl Collecting update-checker==0.11 (from praw) Using cached update_checker-0.11-py2.py3-none-any.whl Installing collected packages: six, decorator, requests, update-checker, praw Found existing installation: six 1.4.1 DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project. Uninstalling six-1.4.1: Exception: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/commands/install.py", line 317, in run prefix=options.prefix_path, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_set.py", line 736, in install requirement.uninstall(auto_confirm=True) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 742, in uninstall paths_to_remove.remove(auto_confirm) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_uninstall.py", line 115, in remove renames(path, new_path) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/utils/ init.py", line 267, in renames shutil.move(old, new) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move copy2(src, real_dst) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 131, in copy2 copystat(src, dst) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 103, in copystat os.chflags(dst, st.st_flags) OSError: [Errno 1] Operation not permitted: '/var/folders/29/gkg89j_x39q7gn7236p6h2s00000gp/T/pip-VG8k71-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info'

spit that back out to me

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222338967, or mute the thread https://github.com/notifications/unsubscribe/ACz08hXeklOUZQn1wqt_1EiCFWIv6f1Jks5qGPgSgaJpZM4IpLrp .

-Macoy Madson

SonOfASelkie commented 8 years ago

nstall praw Password: The directory '/Users/Ronan/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. The directory '/Users/Ronan/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. Collecting praw Downloading praw-3.5.0-py2.py3-none-any.whl (69kB) 100% |████████████████████████████████| 71kB 1.5MB/s Collecting six==1.10 (from praw) Downloading six-1.10.0-py2.py3-none-any.whl Collecting decorator<4.1,>=4.0.9 (from praw) Downloading decorator-4.0.9-py2.py3-none-any.whl Collecting requests>=2.3.0 (from praw) Downloading requests-2.10.0-py2.py3-none-any.whl (506kB) 100% |████████████████████████████████| 512kB 1.6MB/s Collecting update-checker==0.11 (from praw) Downloading update_checker-0.11-py2.py3-none-any.whl Installing collected packages: six, decorator, requests, update-checker, praw Found existing installation: six 1.4.1 DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project. Uninstalling six-1.4.1: Exception: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/commands/install.py", line 317, in run prefix=options.prefix_path, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_set.py", line 736, in install requirement.uninstall(auto_confirm=True) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 742, in uninstall paths_to_remove.remove(auto_confirm) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_uninstall.py", line 115, in remove renames(path, new_path) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/utils/init.py", line 267, in renames shutil.move(old, new) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move copy2(src, real_dst) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 131, in copy2 copystat(src, dst) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 103, in copystat os.chflags(dst, st.st_flags) OSError: [Errno 1] Operation not permitted: '/tmp/pip-XH10i5-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info'

makuto commented 8 years ago

pip2 install --ignore-installed praw

On Sat, May 28, 2016 at 7:26 PM, 7Arach7 notifications@github.com wrote:

nstall praw Password: The directory '/Users/Ronan/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. The directory '/Users/Ronan/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. Collecting praw Downloading praw-3.5.0-py2.py3-none-any.whl (69kB) 100% |████████████████████████████████| 71kB 1.5MB/s Collecting six==1.10 (from praw) Downloading six-1.10.0-py2.py3-none-any.whl Collecting decorator<4.1,>=4.0.9 (from praw) Downloading decorator-4.0.9-py2.py3-none-any.whl Collecting requests>=2.3.0 (from praw) Downloading requests-2.10.0-py2.py3-none-any.whl (506kB) 100% |████████████████████████████████| 512kB 1.6MB/s Collecting update-checker==0.11 (from praw) Downloading update_checker-0.11-py2.py3-none-any.whl Installing collected packages: six, decorator, requests, update-checker, praw Found existing installation: six 1.4.1 DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project. Uninstalling six-1.4.1: Exception: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/commands/install.py", line 317, in run prefix=options.prefix_path, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_set.py", line 736, in install requirement.uninstall(auto_confirm=True) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 742, in uninstall paths_to_remove.remove(auto_confirm) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_uninstall.py", line 115, in remove renames(path, new_path) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/utils/ init.py", line 267, in renames shutil.move(old, new) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move copy2(src, real_dst) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 131, in copy2 copystat(src, dst) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 103, in copystat os.chflags(dst, st.st_flags) OSError: [Errno 1] Operation not permitted: '/tmp/pip-XH10i5-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info'

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222339095, or mute the thread https://github.com/notifications/unsubscribe/ACz08mi_h10pTq-Lt66NLA6gtKmh3_aSks5qGPk-gaJpZM4IpLrp .

-Macoy Madson

SonOfASelkie commented 8 years ago

IT-Floater-MacBook-Pro:redditLikedSavedImageDownloader-master Ronan$ pip2 install --ignore-installed praw

Collecting praw Using cached praw-3.5.0-py2.py3-none-any.whl Collecting six==1.10 (from praw) Using cached six-1.10.0-py2.py3-none-any.whl Collecting decorator<4.1,>=4.0.9 (from praw) Using cached decorator-4.0.9-py2.py3-none-any.whl Collecting requests>=2.3.0 (from praw) Using cached requests-2.10.0-py2.py3-none-any.whl Collecting update-checker==0.11 (from praw) Using cached update_checker-0.11-py2.py3-none-any.whl Installing collected packages: six, decorator, requests, update-checker, praw Exception: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/commands/install.py", line 317, in run prefix=options.prefix_path, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_set.py", line 742, in install **kwargs File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 831, in install self.move_wheel_files(self.source_dir, root=root, prefix=prefix) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 1032, in move_wheel_files isolated=self.isolated, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/wheel.py", line 346, in move_wheel_files clobber(source, lib_dir, True) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/wheel.py", line 324, in clobber shutil.copyfile(srcfile, destfile) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 83, in copyfile with open(dst, 'wb') as fdst: IOError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/six.py'

makuto commented 8 years ago

sudo pip2 install --ignore-installed praw

On Sat, May 28, 2016 at 7:46 PM, 7Arach7 notifications@github.com wrote:

IT-Floater-MacBook-Pro:redditLikedSavedImageDownloader-master Ronan$ pip2 install --ignore-installed praw

Collecting praw Using cached praw-3.5.0-py2.py3-none-any.whl Collecting six==1.10 (from praw) Using cached six-1.10.0-py2.py3-none-any.whl Collecting decorator<4.1,>=4.0.9 (from praw) Using cached decorator-4.0.9-py2.py3-none-any.whl Collecting requests>=2.3.0 (from praw) Using cached requests-2.10.0-py2.py3-none-any.whl Collecting update-checker==0.11 (from praw) Using cached update_checker-0.11-py2.py3-none-any.whl Installing collected packages: six, decorator, requests, update-checker, praw Exception: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/commands/install.py", line 317, in run prefix=options.prefix_path, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_set.py", line 742, in install **kwargs File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 831, in install self.move_wheel_files(self.source_dir, root=root, prefix=prefix) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 1032, in move_wheel_files isolated=self.isolated, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/wheel.py", line 346, in move_wheel_files clobber(source, lib_dir, True) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/wheel.py", line 324, in clobber shutil.copyfile(srcfile, destfile) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 83, in copyfile with open(dst, 'wb') as fdst: IOError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/six.py'

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222339577, or mute the thread https://github.com/notifications/unsubscribe/ACz08njx7IUH57hhi0JjZPxv33Cro-UTks5qGP3sgaJpZM4IpLrp .

-Macoy Madson

makuto commented 8 years ago

Also, copy paste output of pip2 freeze or pip2 list

On Sat, May 28, 2016 at 8:00 PM, Macoy Madson macoymadson@gmail.com wrote:

sudo pip2 install --ignore-installed praw

On Sat, May 28, 2016 at 7:46 PM, 7Arach7 notifications@github.com wrote:

IT-Floater-MacBook-Pro:redditLikedSavedImageDownloader-master Ronan$ pip2 install --ignore-installed praw

Collecting praw Using cached praw-3.5.0-py2.py3-none-any.whl Collecting six==1.10 (from praw) Using cached six-1.10.0-py2.py3-none-any.whl Collecting decorator<4.1,>=4.0.9 (from praw) Using cached decorator-4.0.9-py2.py3-none-any.whl Collecting requests>=2.3.0 (from praw) Using cached requests-2.10.0-py2.py3-none-any.whl Collecting update-checker==0.11 (from praw) Using cached update_checker-0.11-py2.py3-none-any.whl Installing collected packages: six, decorator, requests, update-checker, praw Exception: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/commands/install.py", line 317, in run prefix=options.prefix_path, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_set.py", line 742, in install **kwargs File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 831, in install self.move_wheel_files(self.source_dir, root=root, prefix=prefix) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/req/req_install.py", line 1032, in move_wheel_files isolated=self.isolated, File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/wheel.py", line 346, in move_wheel_files clobber(source, lib_dir, True) File "/Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg/pip/wheel.py", line 324, in clobber shutil.copyfile(srcfile, destfile) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 83, in copyfile with open(dst, 'wb') as fdst: IOError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/six.py'

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222339577, or mute the thread https://github.com/notifications/unsubscribe/ACz08njx7IUH57hhi0JjZPxv33Cro-UTks5qGP3sgaJpZM4IpLrp .

-Macoy Madson

-Macoy Madson

SonOfASelkie commented 8 years ago

Okay, will do. I managed to run python redditUserImageScraper.py finally, but it says that I have the wrong password. I have double and tripled checked. To clarify, I just have to put the password in where it says Username= and Password=?

SonOfASelkie commented 8 years ago

IT-Floater-MacBook-Pro:redditLikedSavedImageDownloader-master Ronan$ pip2 freeze altgraph==0.10.2 bdist-mpkg==0.5.0 bonjour-py==0.3 decorator==4.0.9 macholib==1.5.1 matplotlib==1.3.1 modulegraph==0.10.4 numpy==1.8.0rc1 praw==3.5.0 py2app==0.7.3 pyobjc-core==2.5.1 pyobjc-framework-Accounts==2.5.1 pyobjc-framework-AddressBook==2.5.1 pyobjc-framework-AppleScriptKit==2.5.1 pyobjc-framework-AppleScriptObjC==2.5.1 pyobjc-framework-Automator==2.5.1 pyobjc-framework-CFNetwork==2.5.1 pyobjc-framework-Cocoa==2.5.1 pyobjc-framework-Collaboration==2.5.1 pyobjc-framework-CoreData==2.5.1 pyobjc-framework-CoreLocation==2.5.1 pyobjc-framework-CoreText==2.5.1 pyobjc-framework-DictionaryServices==2.5.1 pyobjc-framework-EventKit==2.5.1 pyobjc-framework-ExceptionHandling==2.5.1 pyobjc-framework-FSEvents==2.5.1 pyobjc-framework-InputMethodKit==2.5.1 pyobjc-framework-InstallerPlugins==2.5.1 pyobjc-framework-InstantMessage==2.5.1 pyobjc-framework-LatentSemanticMapping==2.5.1 pyobjc-framework-LaunchServices==2.5.1 pyobjc-framework-Message==2.5.1 pyobjc-framework-OpenDirectory==2.5.1 pyobjc-framework-PreferencePanes==2.5.1 pyobjc-framework-PubSub==2.5.1 pyobjc-framework-QTKit==2.5.1 pyobjc-framework-Quartz==2.5.1 pyobjc-framework-ScreenSaver==2.5.1 pyobjc-framework-ScriptingBridge==2.5.1 pyobjc-framework-SearchKit==2.5.1 pyobjc-framework-ServiceManagement==2.5.1 pyobjc-framework-Social==2.5.1 pyobjc-framework-SyncServices==2.5.1 pyobjc-framework-SystemConfiguration==2.5.1 pyobjc-framework-WebKit==2.5.1 pyOpenSSL==0.13.1 pyparsing==2.0.1 python-dateutil==1.5 pytz==2013.7 requests==2.10.0 scipy==0.13.0b1 six==1.4.1 update-checker==0.11 xattr==0.6.4 zope.interface==4.1.1

That's pip2 freeze

SonOfASelkie commented 8 years ago

and this is pip2 list

altgraph (0.10.2) bdist-mpkg (0.5.0) bonjour-py (0.3) decorator (4.0.9) macholib (1.5.1) matplotlib (1.3.1) modulegraph (0.10.4) numpy (1.8.0rc1) pip (8.1.2) praw (3.5.0) py2app (0.7.3) pyobjc-core (2.5.1) pyobjc-framework-Accounts (2.5.1) pyobjc-framework-AddressBook (2.5.1) pyobjc-framework-AppleScriptKit (2.5.1) pyobjc-framework-AppleScriptObjC (2.5.1) pyobjc-framework-Automator (2.5.1) pyobjc-framework-CFNetwork (2.5.1) pyobjc-framework-Cocoa (2.5.1) pyobjc-framework-Collaboration (2.5.1) pyobjc-framework-CoreData (2.5.1) pyobjc-framework-CoreLocation (2.5.1) pyobjc-framework-CoreText (2.5.1) pyobjc-framework-DictionaryServices (2.5.1) pyobjc-framework-EventKit (2.5.1) pyobjc-framework-ExceptionHandling (2.5.1) pyobjc-framework-FSEvents (2.5.1) pyobjc-framework-InputMethodKit (2.5.1) pyobjc-framework-InstallerPlugins (2.5.1) pyobjc-framework-InstantMessage (2.5.1) pyobjc-framework-LatentSemanticMapping (2.5.1) pyobjc-framework-LaunchServices (2.5.1) pyobjc-framework-Message (2.5.1) pyobjc-framework-OpenDirectory (2.5.1) pyobjc-framework-PreferencePanes (2.5.1) pyobjc-framework-PubSub (2.5.1) pyobjc-framework-QTKit (2.5.1) pyobjc-framework-Quartz (2.5.1) pyobjc-framework-ScreenSaver (2.5.1) pyobjc-framework-ScriptingBridge (2.5.1) pyobjc-framework-SearchKit (2.5.1) pyobjc-framework-ServiceManagement (2.5.1) pyobjc-framework-Social (2.5.1) pyobjc-framework-SyncServices (2.5.1) pyobjc-framework-SystemConfiguration (2.5.1) pyobjc-framework-WebKit (2.5.1) pyOpenSSL (0.13.1) pyparsing (2.0.1) python-dateutil (1.5) pytz (2013.7) requests (2.10.0) scipy (0.13.0b1) setuptools (1.1.6) six (1.4.1) update-checker (0.11) xattr (0.6.4) zope.interface (4.1.1) IT-Floater-MacBook-Pro:redditLikedSavedImageDownloader-master Ronan$

SonOfASelkie commented 8 years ago

OMG it worked! I had to delete something in the Username= tab (some instructions)

makuto commented 8 years ago

Great! Did it download the images?

On Sat, May 28, 2016 at 8:08 PM, 7Arach7 notifications@github.com wrote:

OMG it worked! I had to delete something in the Username= tab (some instructions)

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222340208, or mute the thread https://github.com/notifications/unsubscribe/ACz08j-FtJfA8sOGy56EyQhWATLgi1-bks5qGQMRgaJpZM4IpLrp .

-Macoy Madson

SonOfASelkie commented 8 years ago

Yep ;D

All 605 of them seem to be accounted for. Thank you so much for this tool - this is staying on my desktop ;D

makuto commented 8 years ago

Nice! I really appreciate that. Happy downloading! On May 28, 2016 8:33 PM, "7Arach7" notifications@github.com wrote:

Yep ;D

All 605 of them seem to be accounted for. Thank you so much for this tool

  • this is staying on my desktop ;D

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222340867, or mute the thread https://github.com/notifications/unsubscribe/ACz08vQZ7gwvJ3fQe2g7ZXoc0h7hMC2uks5qGQjzgaJpZM4IpLrp .

SonOfASelkie commented 8 years ago

Yeah - it's so BS that reddit doesn't have this feature built in (especially seeing as I'm signed up for the beta, use RES AND have reddit gold...like are you kidding me?

makuto commented 8 years ago

Yeah! Thankfully, the script wasn't too hard to write On May 28, 2016 9:32 PM, "7Arach7" notifications@github.com wrote:

Yeah - it's so BS that reddit doesn't have this feature built in (especially seeing as I'm signed up for the beta, use RES AND have reddit gold...like are you kidding me?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/makuto/redditLikedSavedImageDownloader/issues/1#issuecomment-222342234, or mute the thread https://github.com/notifications/unsubscribe/ACz08rarG2nlvqIK_dn8l4lkIl9oIdBbks5qGRbhgaJpZM4IpLrp .