pip Questions
5
When I try to install FastAPI. I am using Python 3.10.2, Pycharm.
I have already installed build tools which is given by the link.
and updated setuptools, wheel and pip using
pip install --upgrade...
5
Solved
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:
Fatal error in launcher: ...
1
If I have a venv with black==22.12.0 installed and I run pip install --U black then pip will update to the newest version of black. I will see same behavior if black is listed in a requirements.txt...
Verticillate asked 9/4, 2023 at 8:43
3
Solved
I am running Pylint on the GitHub actions.
Before it runs, it installs the module playsound during the dependencies installation.
The checks all failed with Python 3.8, 3.9, and 3.10.
It seems to f...
Restore asked 30/4, 2023 at 15:28
6
Solved
so the problem is that pypi.org hase been filtered by iranian government(yes , i know it's ridiculous!). i tried to install some python modules from Github downloaded files:
pip install moduleName
...
Doerrer asked 23/1, 2023 at 15:49
1
After installing pytorch via
RUN python3 -m pip install --no-cache-dir torch==1.9.1
I realised that corresponding docker layer is 1.78GB
Is there any way to reduce pytorch size? Current version is...
5
I am trying to install the requests package for Python 3.7 on Mac. I already have python 2.7 installed. I have read all the previous questions related to this and none of them could solve the issue...
Doodle asked 19/2, 2020 at 21:19
1
I am trying to install the cryptography module for python yet I keep getting errors and so far I have been able to solve each one as they come including:
error: Unable to find vcvarsall.bat
mysql...
Vaios asked 11/5, 2015 at 3:46
7
In a conda environment with Python 3.8.15 I did
pip install ultralytics
successfully installed ...,ultralytics-8.0.4
But when running from ultralytics import YOLO , it says
ModuleNotFoundError: ...
Soapwort asked 12/1, 2023 at 13:30
4
Receiving an error during pip pycuda installation on ubuntu as follows:
command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
note: This error originates from a subprocess, and is likely ...
2
Solved
I am building a Python Lambda function code to be executed on AWS (Linux).
My Dev machine is not Linux.
If I do pip install, I am getting Windows/MacOS related modules.
Is there a way to fetch Li...
Panayiotis asked 26/4, 2017 at 6:52
5
Solved
import face_recognition
image = face_recognition.load_image_file("My_Image.png")
face_locations = face_recognition.face_locations(image)
print("I found {} face(s) in this photograph.".format(len(f...
Yore asked 14/3, 2019 at 3:12
3
I'm currently trying to follow the guides from CumulusCi and I'm having some trouble installing pipx inside my computer.
I already have installed Python 3 and I'm currently running the following co...
Goer asked 26/3, 2021 at 18:39
2
I'm trying to install a requirements.txt file in Docker, and I make it about 30 packages in when I get this error when trying to install importlib:
Can not execute setup.py since setuptools is not ...
Revolutionize asked 10/6, 2022 at 8:0
8
When making a plot, I used both Jupyter Notebook and Pycharm with the same set of code and packages. The code is:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt # as in P...
Sidon asked 24/5, 2017 at 4:40
6
Solved
I am trying to install OpenCV from Unofficial Windows Binaries for Python Extension Packages.
I downloaded the following file : opencv_python‑3.4.3‑cp37‑cp37m‑win_amd64.whl,
and when I did pip i...
3
ERROR: Could not find a version that satisfies the requirement scipy==1.7.1 (from versions: 0.8.0, 0.9.0, 0.10.0, 0.10.1, 0.11.0, 0.12.0, 0.12.1, 0.13.0, 0.13.1, 0.13.2, 0.13.3, 0.14.0, 0.14.1, 0.1...
9
Solved
I am trying to install few packages and started getting an error. Then used multiple commands in ubuntu to update few things but errors are similar
pip install -U pip setuptools
or
python3 -m pip i...
Loewi asked 12/10, 2022 at 11:46
2
Solved
I'm distributing a module which can be imported and used as a library. It also comes with an executable—installed via console_scripts—for people to use.
That executable can also be started as a sy...
Speechless asked 18/5, 2020 at 8:29
7
Solved
Whenever i execute the code below it gives me following Error:
ImportError: cannot import name 'Serial' from 'serial' (unknown location)
Code:
from serial import Serial
arduinodata = Serial('co...
2
I am facing an error to install the packages on aws ec2 instance with Ubuntu 18 using the following command -
pip install -e .
The error is -
ERROR: Could not install packages due to an OSError: [E...
Coxswain asked 21/11, 2022 at 8:8
3
Context :
This is the problem https://github.com/pypa/pip/issues/6717#issue-468204416 I'm facing
and trying to solve via
https://github.com/pypa/pip/issues/6717#issuecomment-511652167
I want to us...
Racy asked 11/9, 2019 at 16:13
2
Solved
First thing's first: my OS is openSUSE Tumbleweed, my Python version is 3.11.7, and my pip version is 23.2.2
My goal is as follows: I want to use pip to install the pytictoc package into a virtual ...
Twopiece asked 24/1 at 2:56
2
I have a python package that I want to install inside a docker file.
pyproject.toml looks like:
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_me...
Melia asked 7/11, 2022 at 23:11
3
Solved
I tried "pip install mkl-fft"
but could not finish.
ERROR: Could not find a version that satisfies the requirement mkl-fft (from -r requirements.txt (line 11)) (from versions: none)
ERROR...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.