Python multipart not working?
First, here's some information: My girlfriend uses Arch Linux.
When she runs the code, she is shown that she is missing the components even though she has them installed.
And when she does Pacman -Q to see all the modules, it's not in there.
With pip install it says it is with anacondo.
Does anyone happen to know what can be done about this?
Either it uses a virtual environment (which ignores globally installed packages) and installs the module with pip not in this environment (just globally, as you see on your screenshot) or it uses another Python interpreter to execute the code, which does not refer to the packages downloaded via pip.
For proof, it is possible tosys.path-Variable, because it leads to the paths in which the currently used Python interpreters search for (external) modules.
Call pip more explicitly about the Python interpreter you currently use.
Example:
Wow, thank you for this detailed answer! Such answers I appreciate most, and often help most. Thanks again!
Love
CrowdedGames
@regex9 my girlfriend told me that there is no import sys because she only works in the terminal, and not on a python surface
It doesn’t make any difference. However, if it wants to run the above code directly in the terminal, then either successively:
or it stores the code in a Python script and calls it in the terminal via the Python interpreter.