All Questions
86 questions
0
votes
0
answers
490
views
module not found markupsafe
I create a virtual env:
> virtualenv -p python3 spectap
I activate it and install packages from requirements.txt in it:
> . spectap/bin/activate
> pip3 install -r requirements.txt
Running ...
0
votes
0
answers
871
views
Version conflict error while installing albumentation on python 3.6.8 with opencv-python
I'm trying to install albumentations on python 3.6.8. However, the installation is failing with the following error
Failed to build opencv-python
ERROR: Could not build wheels for opencv-python,
...
0
votes
0
answers
1k
views
Cannot install cffi-1.15.1-cp36-cp36m-win_amd64 wheel on Python 3.10
I am attempting to package a custom built Python wheel package for offline installation, which indirectly depends on cffi. To do so, I call python3 -m pip download my-custom-package -d package-content....
0
votes
0
answers
176
views
In Anaconda Command Prompt, unable to pip install pyflycap2
I'm trying to install the pyflycap2 module in order to collect data from a camera in python. The camera came with provided software to use the camera itself, and an installer to allow the camera to ...
3
votes
1
answer
10k
views
Pip broken after upgrade. Cannot unsinstall or upgrade Pip or Python
I recently had tried to run a pip command and noticed my pip version was considerably out of date so upgraded it. This seems to have completely broken my pip install and I cannot figure out how to ...
1
vote
0
answers
699
views
Installing modules in older python version fails with pip
I have python versions 2.7 and 3.8 in my laptop which I both need.
I need to change my python path into:
PYTHONPATH=$HOME/lib/python
Now, I am trying to install matplotlib and numpy for version 2.7:
$...
0
votes
1
answer
104
views
How do you import a module right after installing it in the same file? [duplicate]
I am trying to install and import this python module in the same file. I am adding the directory where I want networkX to be installed in PYTHONUSERBASE, and I even prepend it to the PATH.
#install ...
2
votes
1
answer
577
views
How to install pip with specific python version?
I want to install python 3.6 with pip version of ~= 9.0.1 for an open source project/side project.
Or is there any way to create virtualenvironment using these versions?
I am using Ubuntu 20.04 LTS.
...
2
votes
1
answer
5k
views
error in ibm_db setup command: use_2to3 is invalid [duplicate]
I am trying to install ibm_db_sa in my miniconda virtual environment (python 3.6). I am seeing this error and it could be because I am a separate user on my laptop and not the admin. Is there any ...
0
votes
2
answers
863
views
python3 package cannot be imported as non-root user
I'm trying to import a python3 module using pip3 as root user. I could import the same installed python3 module as root user. Now when I try to import that module after exiting from sudo and as normal ...
2
votes
1
answer
410
views
pip3 installs modules to location python3 can't find
I have pip3, installed via the yum install of python3-pip.
I've done a pip3 global install of some modules I need, but python3 can't find them to import. After a little investigation I see that pip3 ...
-2
votes
1
answer
210
views
ModuleNotFoundError: No module named 'urlib3'
Im New to Python, trying to code a webscraper. Launching my script got an error.
Please can you help
julien@julien-Lenovo-IdeaPad-S340-15IWL:~/Bureau$ python3 Paris.py
Error:
ModuleNotFoundError: ...
-1
votes
2
answers
2k
views
I have an error on 'pip install src' in Python 3.6
I do the command pip install src.
I don’t know what the problem is. But I need src for code on GitHub.
Error:
Collecting src
Using cached src-0.0.7.zip (6.3 kB)
Using legacy 'setup.py install' for ...
1
vote
4
answers
1k
views
Rasa installation Requirement Incompatible
I have a laptop with Windows 10 Pro and I'm trying to install Rasa 1.6.0
When I try to run the command pip install rasa==1.6.0 --no-cache-dir, I get the following error:
Collecting sanic~=19.9
...
2
votes
1
answer
3k
views
ModuleNotFoundError: No module named my package but I can find it in pip freeze
I tried to make a custom package [(link)][1]
like this
[ '|-- willytricks',
' |-- __init__.py',
' |-- directoryList.md',
' |-- setup.py',
' |-- trick.py',
' |-- build',
' ...