All Questions
2,616 questions
0
votes
0
answers
83
views
conda: python or pip command gives error - The system cannot execute the specified program
conda: python or pip command gives error - The system cannot execute the specified program
I am trying to setup a new conda env in Anaconda3 on Windows.
C:\Users\raka>conda create --name "...
1
vote
1
answer
37
views
ImportError: cannot import name 'pywrap_tensorflow' from 'tensorflow.python' after reinstalling Python and TensorFlow
I'm encountering an issue when trying to import tensorflow after reinstalling both Python and TensorFlow. Here is the error I get when trying to simply import tensorflow:
ImportError ...
0
votes
1
answer
60
views
pip building wheel for wxPython on Ubuntu
I have tried to install wxPython on Python versions 3.10, 3.12, and 3.13, and they all fail with much the same error.
I've installed as many of the required packages as are necessary.
Does anyone have ...
-2
votes
0
answers
56
views
.py to .app in mac error: [Errno 17] File exists: [closed]
I am using a Mac and I want to create a .app application for file extraction using Python.
error: [Errno 17] File exists: '/Users/faresmohamedmomen/build/bdist.macosx-10.13-universal2/python3.13-...
0
votes
1
answer
51
views
When using venv, packages I'm building suddenly disappear when others are installed
This is more of a where in pip could this be happening, not a question about the repos/packages.
I'm building several pytorch related repos using their setup.py scripts. For example, https://github....
1
vote
1
answer
424
views
Python Package Installation Fails: 'Getting requirements to build wheel did not run successfully'
In my python projects I create a list of required packages by pip freeze > requirements.txt it automatically list the packages with version. But after a while when I reinstall the package or trying ...
0
votes
1
answer
83
views
ModuleNotFoundError: No module named 'bs4' but in pip list is already installed
in here try to install beautifulSoup using pip, but the module is not found,
I try to verify python path and pip on my computer here us the result
/Users/macbookairm2/Code/Dev/Fiverr/Scraping/project/...
0
votes
1
answer
61
views
Python installer won't install pip on Windows 8.1, error on unknow DLL
I'm trying to install Python on a computer with Windows 8.1 x64, and every time I tried, the installer won't install pip.
I started with Python 3.13, then 3.11, 3.10 (all of them x64), and the last ...
-5
votes
1
answer
170
views
ModuleNotFound Error right after I globally install a Python package. What am I missing here? [duplicate]
I'm running Python 3.12.3 on Ubuntu 24.04. I have been trying to install a few different packages to determine timezones from longitude and latitude coordinates, and every time I've tried installing ...
0
votes
1
answer
170
views
How to create a system-wide environment to install pip packages when using pip inside a Docker container?
I am trying to build an existing Dockerfile, which needs to be migrated from an older ubuntu version base image to a more up-to-date base image.
The existing Dockerfile contains commands such as
pip ...
0
votes
0
answers
102
views
About "pip install x" issue
Since I tried to work with YOLOv11 and had to install Python 3.10.1 alongside Python 3.12 for this purpose, my system has been facing constant issues. Up until now, I haven't been able to install ...
0
votes
0
answers
64
views
How to resolve the package dependency conflict in python?
I am trying to do a LLM project. So created an virtual env using venv module and started downloading the dependencies one after the other. I am have downloaded one package called langchain-chroma ...
0
votes
1
answer
55
views
Installing pesq 0.0.2 on google colab
Collecting pesq==0.0.2
Using cached pesq-0.0.2.tar.gz (34 kB)
Preparing metadata (setup.py) ... done
Building wheels for collected packages: pesq
error: subprocess-exited-with-error
× python ...
0
votes
1
answer
161
views
Windows ModuleNotFoundError: No module named 'Crypto' even though pycryptodome is installed
I'm trying to use the pycryptodome library in my Python project, but I keep getting the following error:
ModuleNotFoundError: No module named 'Crypto'
Here's what I have done so far:
I installed ...
0
votes
1
answer
128
views
RUN pip install --no-cache-dir -r requirements.txt installing but no working with Docker
I've trying to use docker for a couple of projects, one is a Django and another is a python telegram bot; But in both cases the problem is that no matter how I copy or install requirements.txt into ...