Reputation: 21
I'm trying to install an extern package within Spyder (version 5) so I installed it using pip in the command prompt (Windows 11) but it's not installed for Spyder, it is in "C:\Users\me\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages" by default. Furthermore, the Spyder terminal is not working for my OS, so I'm looking for an other way to install my package on Spyder and pip seemed appropriate to me. I don't know how to get pip for Spyder though. Can someone help please?
Upvotes: 2
Views: 7246
Reputation: 1
step1: download get-pip.py
to path_to_your_dir/Spyder/
, where your spyder located in.
http://bootstrap.pypa.io
step2: execute get-pip.py
and wait unitl the terminal vanish (installation complete).
step3: check pip in spyder interface:
type pip list
in the console of spyder UI.
note: I find this solution on CSDN blog of "nephrologist". https://blog.csdn.net/m0_71756204/article/details/131268231
Upvotes: 0