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?

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
4 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
regex9
7 months ago

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.

import sys
print(sys.path)

Call pip more explicitly about the Python interpreter you currently use.

Example:

python -m pip install python-multipart
regex9
7 months ago
Reply to  CrowdedGames

It doesn’t make any difference. However, if it wants to run the above code directly in the terminal, then either successively:

import sys;print(sys.path)

or it stores the code in a Python script and calls it in the terminal via the Python interpreter.