Error while installing selenium package in pycharm - selenium

I am getting this error while installing selenium package in pycharm
Looking in indexes: https://afeed:****#gitlab.com/api/v4/projects/33757992/packages/pypi/simple
ERROR: Could not find a version that satisfies the requirement pip==22.3.1 (from versions: none)
ERROR: No matching distribution found for pip==22.3.1
WARNING: There was an error checking the latest version of pip.
I tried to install using the command given in the screenshot but i am unable to install, I want to remove the indexes url that is there

Related

Unable to install tensorflow-quantum using pip

Using the command pip install tensorflow-quantum gives the following error:
ERROR: Could not find a version that satisfies the requirement tensorflow-quantum (from versions: none)
ERROR: No matching distribution found for tensorflow-quantum
Not sure why the versions is none. Also, not sure how to proceed. I can build from source but need help on this error.
tensorflow-quantum 0.7.2 provides wheels for Linux and MacOS, not for w32/w64. And no source code.
You can try to build from source.

How can I install and use Apache Lucene in a python program?

Can anyone please give step-by-step procedure to install and use Apache Lucene in a python program?
My Environment:
OS: Windows 11
Python: 3.10
Python Editor: IDLE Shell 3.10.7
JDK: 1.8
I am trying to use the following code but it gives me an error:
from org.apache.lucene.analysis.standard import StandardAnalyzer, StandardTokenizer
from org.apache.lucene.analysis.tokenattributes import CharTermAttribute
Error: ModuleNotFoundError: No module named 'org'
I have already tried to install lucene as:
pip install lucene
But I am getting the following error:
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement lucene (from versions: none)
ERROR: No matching distribution found for lucene

How to solve "ERROR: No matching distribution found for tensorflow==1.12.0"

I am trying to install tensorflow 1.12.0. This is the command that I am using pip install tensorflow==1.12.0. I got this command from this link. This is the error that I am getting.
ERROR: Could not find a version that satisfies the requirement
tensorflow==1.12.0 (from versions: 2.5.0rc0, 2.5.0rc1, 2.5.0rc2,
2.5.0rc3, 2.5.0) ERROR: No matching distribution found for tensorflow==1.12.0
What am I doing wrong?
You can install previous versions of Tensorflow directly from the Github release page. For example, the 1.12.0 version can be downloaded from https://github.com/tensorflow/tensorflow/releases/tag/v1.12.0.
My python version was 3.9. Intalling python version 3.6 solved the problem. I installed it in virtual environment with conda.

Could not find adapter type bigquery

Having trouble running dbt today... encountered this error message and cannot debug the issue. I did not have this issue yesterday and have not changed anything since.
Installed dbt with Homebrew
Running with dbt=0.18.0
dbt version: 0.18.0
...
Configuration:
profiles.yml file [ERROR invalid]
dbt_project.yml file [OK found and valid]
Profile loading failed for the following reason:
Runtime Error
Credentials in profile "dandelion-bq", target "dev" invalid: Runtime Error
Could not find adapter type bigquery!
Probably you installed a plugin or another version of dbt-core, try:
dbt --version
It should list the plugins installed, guess in your case there is no bigquery there:
dbt --version
installed version: 0.19.0
latest version: 1.0.0
Your version of dbt is out of date! You can find instructions for upgrading here:
https://docs.getdbt.com/docs/installation
Plugins:
- postgres: 0.19.0
- bigquery: 0.19.0
Install it, with pip or pip3
pip install dbt-bigquery
Same applies for any other plugin/adapter when you get the error Credentials in profile <profile>, target <target> invalid: Runtime Error Could not find adapter type <plugin>!

problem building TensorFlow r1.13 from sources

I'm trying to build under Ubuntu 18.04 TensorFlow r1.13 from sources and whichever compatible version of bazel I use I get the same errors:
ERROR: /home/hamlatzis/.cache/bazel/_bazel_hamlatzis/bc20d0623a1a0c4eaa510688c26216cb/external/io_bazel_rules_closure/closure/protobuf/closure_proto_library.bzl:66:21: name 'ProtoInfo' is not defined (did you mean 'protos'?)
ERROR: error loading package '': Extension 'closure/protobuf/closure_proto_library.bzl' has errors
ERROR: error loading package '': Extension 'closure/protobuf/closure_proto_library.bzl' has errors
I need to be on r1.13, but to be on the safe side I've tried with other branches (r1.14 and master) and had no problems with those
Any idea?
Try a different Bazel version.
Bazel 0.21.0 worked for me for Tensorflow r1.13.