Skip to content
Advertisement

Tag: pip

pipx-installed Spyder doesn’t recognize Poetry-installed pandas only when trying to view DataFrame in Variable Explorer

I’m using Python 3.8.5. My OS is Kubuntu 18.04. I installed Spyder and Poetry via pipx: Within my project folder, I installed pandas and spyder-kernels as dependencies: I can open Spyder just fine: In Spyder -> Preferences -> Python interpreter, I added the path to the Python interpreter for the project’s Poetry environment. I can import pandas in Spyder, like

Can’t install xmlsec using PIP command

pip install xmlsec commands throws the below error. I don’t know how to resolve this issue. I tried to install other xmlsec package too, nothing worked. Answer Xmlsec listed here https://pypi.org/project/xmlsec/. The below command should install for download required native libraries.

Is there a way to get directory package dependencies in python?

I am aware that pip freeze > requirements.txt exists, yet that that prints out my system packages, of which only a few my directory/ project needs. I am not using a virtualenv so I’m pretty sure I can’t print out local packages like that. I also know that pipdeptree exsists but I also don’t see how that solves my problem?

Pip is selecting wrong path

I’m using windows 10 and I got rid of python 3.8 and installed 3.7 as the only python version on my system. When trying to install libraries using pip I now get the error: when I checked in the console which -a pip I got: Now when I look for Python in my variable path it is alright… Anyways I

Installing yfinance errors window 7 Anaconda

I tried installing yfinance using pip install yfinance and I got: Then tried conda install -c ranaroussi yfinance and got: Any idea what’s going on and how I can install it? Thanks in advance! Answer Case 1: pip Source: Permission denied error by installing matplotlib Linux / macOS From your terminal, you can install the package for your user only,

How to tell pip that a package(opencv) has been compiled from source

Because of some specific requirements I needed to compile a package (opencv with cuda support) from source. After successfull compilation my python-environment is able to import opencv without a problem: But if I try pip list opencv-python is not part of it: The problem is that afterwards I need to install more packages via pip install -r requirements.txt and some

Not able to install jaxlib

I am trying to install jaxlib on my windows 10 by the following command which I found on the documentation.. pip install jaxlib It shows the following error Answer Jaxlib is not supported on windows you can see it here.. https://github.com/google/jax/issues/438

Advertisement