24,342 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
2
answers
57
views
Can I install XrootD in google colab
I am trying to install XRootD in Google Colab, and I have two questions regarding the installation process:
1. Is it even possible to install XRootD in Google Colab?
2. If yes, from where should it be ...
0
votes
0
answers
75
views
GitHub Cloning Causing ModuleNotFoundError in Google Colab
I am trying to clone a repository known as progen3 on GitHub and create it in my Google Colab environment. However, whenever I do so, and then try to access items from the repository, it causes a ...
1
vote
2
answers
135
views
Problem installing gpaw with pip in windows
I'm trying to install gpaw so I can learn to do some dft calculations. However, when trying to install it on Windows on the cmd line with pip, I get the following answer:
Collecting gpaw
Using ...
Advice
0
votes
1
replies
42
views
pip install: multiple indexes contain same package version - which one is used?
I’m working with multiple (private) pip registries (e.g. GitLab). My pip.conf looks like this:
[global]
index-url = url.to.registry_1/pypi/simple
extra-index-url = url.to.registry_2/pypi/simple
Both ...
1
vote
1
answer
130
views
Pip wont let me install user local packages with --user any more, shows externally managed env error [duplicate]
I have used --user in the past to not have to deal with virtualenvs in the past, but I cant seem to do it now, presumably on a different python version..
$ pip install --user esphome
error: externally-...
-1
votes
1
answer
99
views
Specifying local relative dependency in requirements.txt
I'd like to import a local package with a relative path in Python 3.12. When I do so I get this error:
ValueError: non-local file URIs are not supported on this platform: ...
The local package is ...
0
votes
3
answers
155
views
Installed bcrypt with pip in a docker container, but getting ModuleNotFoundError
I am trying to run a Python program in a docker container. The program uses the bcrypt library. It runs without problems outside of a docker container (using intellij ultimate), but it does not run ...
-1
votes
1
answer
79
views
future module in debian
I want to use this app. As it is mentioned in the README.md it needs the future module of python. I have debian sid and python3-future is removed from the repos of apt. When I install it via its setup....
Advice
0
votes
7
replies
113
views
How to import an editable package?
I've installed a package from a cloned repository, in "editable" mode (pip install -e .). I can't import the package in a script in the virtual environment where the package in installed (...
Advice
0
votes
4
replies
145
views
python3.14 returns error but output is still correct
I had a python program that I could not get to work until I put it in a virtual environment. Since I use it a lot, I put the following in a zsh script:
python3 -m venv ~/bin/pypath/venv
source ~/bin/...
3
votes
2
answers
169
views
How do I Download Poppler and Tesseract Programmatically with PowerShell
In Python, there are two libraries which are often used in tandem, Poppler and Tesseract. They both need external downloads to function:
Poppler, Tesseract. The general recommendation for Windows is ...
1
vote
1
answer
96
views
Depedency Hell airflow+dbt
Hello I'm new to airflow, lately I'm struggling on a project with dbt+airflow+docker. My problem 1) I pip install dbt-core, dbt-duckdb adapter, 2) I try to install airflow with:
pip install "...
-8
votes
2
answers
102
views
How do I use pipenv? [closed]
I keep getting stuck in the terminal trying to execute the commands to install Django. This is what I keep on seeing.
$ pip install pipenv
Defaulting to user installation because normal site-packages ...
1
vote
1
answer
522
views
How to correctly install JAX with CUDA on Linux when `jax[cuda12_pip]` consistently falls back to the CPU version?
I am trying to install JAX with GPU support on a powerful, dedicated Linux server, but I am stuck in what feels like a Catch-22 where every official installation method fails in a different way, ...
4
votes
1
answer
213
views
Why when I build my Python library from C code, the Python functions don't work
I'm trying to build a Python library from C code. I'm on macOS.
When I only build the .so file and link it in Python like this, all the functions work as intended:
import sys
sys.path.append("...