After updating Pycharm on Macos I get this error when I try to install webdriver package :
ERROR: Could not find a version that satisfies the requirement webdriver (from versions: none)
ERROR: No matching distribution found for webdriver
I run this and its fixed :
python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.12.0-py3-none-any.whl
Related
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
When I try to run an automation.py code that I created in python using Selenium I get the error message ModuleNotFoundError: No module named 'selenium'. I have tried to run the pip install. I am using python version 3.
pip3 install selenium
But I still get the error message.
pip3 install selenium-webdriver
$ java -jar jython-installer-2.7.2.jar
DEPRECATION: A future version of pip will drop support for Python 2.7.
Looking in links: /var/folders/z9/0d8kprrn3mq0_tn61q5t26rh0000gp/T/tmpACvQ7X
Collecting setuptools
ERROR: Could not install packages due to an EnvironmentError: [Errno 20049] Unknown error: 20049: '/private/var/folders/z9/0d8kprrn3mq0_tn61q5t26rh0000gp/T/pip-install-UU3lEi/setuptools'
I created a virtual environment in Pycharm for Python 3.7
But when I try to install a lower version of Tensorflow in that venv, using
pip install tensorflow==1.15
I get this error.
ERROR: Could not find a version that satisfies the requirement tensorflow==1.15 (from versions: none)
ERROR: No matching distribution found for tensorflow==1.15
My pip is upgraded.
MY OS is Arch Linux.
Any suggestions?
$ pip install tensorflow==0.9.0
ERROR: Could not find a version that satisfies the requirement tensorflow==0.9.0 (from versions: 2.0.1)
ERROR: No matching distribution found for tensorflow==0.9.0
I don't know the reason...
I would suggest you to create a virtual environment and then fresh install TF using pip install "tensorflow==0.9.0"