-
Notifications
You must be signed in to change notification settings - Fork 31.7k
-
Hi there! I want to learn game development, and I navigated my way to the arcade library.
Naturally, I wanted to install the library, so I opened up a VENV in cmd (windows 11 without admin privileges) and typed in "python -m pip install arcade" and it did a bunch of stuff with a few errors saying that it isn't a problem with PIP and returned to the command line.
I also tried "pip3 install arcade" and did everything in the article: https://api.arcade.academy/en/2.5.7/installation_windows.html
This is also my first time posting on GitHub, so please don't refrain from calling me out on some mistakes and suggesting some things.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment 3 replies
-
hello! can you share the error message? I recently had an error installing arcade but it was really just asking me to brew uninstall pillow first so that it can reinstall pillow in the arcade install.
Beta Was this translation helpful? Give feedback.
All reactions
-
These are the messages, and frankly, I understand none of them. 😅
Screenshot 2024年09月15日 204606
Screenshot 2024年09月15日 204615
Beta Was this translation helpful? Give feedback.
All reactions
-
are you using pip3 or pipenv? pip3 install arcade or python3 -m pipenv install arcade should work for command line install but also to note you need to switch from python 3.12 to python 3.10 or 3.11 as arcade 2.6.17 isn't made for 3.12 yet as per the error.
Beta Was this translation helpful? Give feedback.
All reactions
-
I am doing the following command:
python -m pip install arcade
I have tried it a few times.
Also, I do not know how to change Python version in VSC (I have already installed Arcade without a VENV)
Beta Was this translation helpful? Give feedback.