Installing dabl Package - python

I am trying to install dabl package and it throws the following error:
pip install dabl
Collecting dabl
Could not find a version that satisfies the requirement dabl (from versions: )
No matching distribution found for dabl

Combined comments from James and hoefling.
There is no package called "dabl" on the PyPi index. That package is still under development on GitHub. You will need to clone the repo and install from the local source. Or install via
pip install git+https://github.com/amueller/dabl/

Related

isc_parser python library not installing in mac tried using pip

while installing requirements of this github repo:-
https://github.com/sentient-bread/CL-Project2
I am shown this error:-
ERROR: Could not find a version that satisfies the requirement isc_parser (from versions: none)
ERROR: No matching distribution found for isc_parser
i tried installing it using:-
pip install isc_parser and pip3 install isc_parser

Could not find a version that satisfies the requirement python-dotenv (from versions: none)

I am currently working on MAC and have created a new virtual environment for the project where i want to install the library - python-dotenv but getting below errors. To be noted that the python version on venv is Python 3.8.9. In this venv, i have 3 packages as of now -
pip 21.1.2
setuptools 57.0.0
wheel 0.36.2
Can someone please help with the below errors which i get after running the command pip install python-dotenv?
ERROR: Could not find a version that satisfies the requirement python-dotenv (from versions: none)
ERROR: No matching distribution found for python-dotenv
Try installing dotenv:
pip install dotenv

pip install ortools: No matching distribution - Alpine

In a docker I try to run pip install ortools and it can't be found. Other pip install packages work flawlessly. I use "FROM python:3.6.8-alpine" in my Dockerfile
bash-4.4# pip install ortools
Collecting ortools
ERROR: Could not find a version that satisfies the requirement ortools (from versions: none)
ERROR: No matching distribution found for ortools
bash-4.4# pip install --upgrade pip
Requirement already up-to-date: pip in /usr/local/lib/python3.6/site-packages (19.1.1)
Root cause:
Gooogle OR tools does not support alpine, since pypi is not supported on alpine
Follow the progress of this issue: https://github.com/google/or-tools/issues/756
https://pypi.org/project/ortools/7.1.6722/#files it only has windows releases.
I switched from Alpine to Bullseye because I didn't have a constraint on it.
Note that this can increase image size.

Install twisted under CentOS6

When I try to install a package, I have this error :
Could not find a version that satisfies the requirement Twisted>=16.0.0 (from matrix-synapse==0.27.4) (from versions: )
No matching distribution found for Twisted>=16.0.0 (from matrix-synapse==0.27.4)
So I try to install Twisted : pip install twisted
But I get this error :
Could not find a version that satisfies the requirement twisted (from versions: )
No matching distribution found for twisted
I'm working under CentOS6 and python2.7.
Use --verbose option with pip to see exact issue.
Sometimes pip unable to install twisted because of missing library called "libbz"
you can install libbz by below commands.
yum install libbz2
yum install libbz2-devel
Also install bzip
yum install bzip2
yum install bzip2-devel

pip install pygmaps python

I am trying to instal pygmaps for my Python 3.5:
pip install pygmaps
I am getting this message:
Could not find a version that satisfies the requirement pygmaps (from versions: ) No matching distribution found for pygmaps
You tried to install the old version of pygmaps. Here the newest https://github.com/thearn/pygmaps-extended
For installing from git use this command:
pip install git+https://github.com/thearn/pygmaps-extended
pip downloads from PyPI and there is nothing to download from https://pypi.python.org/pypi/pygmaps
Go to https://code.google.com/archive/p/pygmaps/downloads, download pygmaps-0.1.1.tar.gz, unpack it and install.

Categories