Install Python Modules From Emacs
May 2021
Testing: get the latest file path _with:
=
Output:
/opt/homebrew/opt/python@3.10/bin/python3.10
Verify pip3 is there then run this:
/opt/homebrew/opt/python@3.10/bin/pip3 install beautifulsoup4That'll give you something like this if the modules hasn't been installed yet:
#+begin_example Collecting beautifulsoup4 Using cached beautifulsoup4-4.11.1-py3-none-any.whl (128 kB) Collecting soupsieve>1.2 Using cached soupsieve-2.3.2.post1-py3-none-any.whl (37 kB) Installing collected packages: soupsieve, beautifulsoup4 Successfully installed beautifulsoup4-4.11.1 soupsieve-2.3.2.post1 #+end_example
Then you can use it with:
Output:
end of line