[Tutor] Fwd: uploading images in pygame
Peter Otten
__peter__ at web.de
Wed Apr 17 07:55:48 EDT 2019
fatima butt wrote:
> the python version is 3.7.3
> computer is acer SWIFT
> The error I get is following:
> Traceback (most recent call last):
> File "C:\Users\ammah\OneDrive\Documents\project1\myCode.py.py
> <http://mycode.py.py/>", line 84, in <module>
> background =
> pygame.image.load(path.join(img_dir,"ship1.jpg")).convert()
> pygame.error: Couldn't open
> C:\Users\ammah\OneDrive\Documents\project1\ship1.jpg
Are you sure you have an image called 'ship1.jpg' in the
"C:\Users\ammah\OneDrive\Documents\project1" folder?
Double-check before you take other less likely problems into consideration.
If you can see the above file in your filemanager -- does the following
script succeed?
with open(r"C:\Users\ammah\OneDrive\Documents\project1"), "rb"):
pass
If it doesn't, what does the traceback show?
More information about the Tutor
mailing list