from google.cloud import speech lib not exist - gcloud

I have installed google SDK and also google-cloud-speech for python through pip. But when I type "from google.cloud import speech", it is not recognizing the library. Please help.

Install the client library
pip install --upgrade google-cloud-speech

Related

No module named 'keras_preprocessing'

I installed python 3.9.0
and Tensorflow and Keras 2.11.0
I can see they all installed
but i can't run this:
from tensorflow.keras.preprocessing.image import ImageDataGenerator, img_to_array
from keras_preprocessing.image import load_img
the input is:No module named 'keras_preprocessing'
what can I do?
You need to install Keras-Preprocessing
pip install Keras-Preprocessing

AttributeError: module 'OpenSSL.SSL' has no attribute 'TLS_METHOD'

When trying to import scrapy in my Jupyter Notebooks via Anaconda (Windows), I get this error, which I havenĀ“t been able to solve. I'm working with Python 3.
What I did till now:
pip install Scrapy
pip install pyopenssl
import scrapy
and I get the following error:
TLS METHOD ERROR
Tks for your help.
Gisselle
I Have installed latest version of cryptography which worked for me . You can try it
pip install cryptography

Error when installing pycaret (jinja2) on Colab

I'm trying to use pyCaret on Colab. This is the setup:
!pip install pycaret
from pycaret.classification import *
grid = setup(data=s, target=s.columns[-1], html=False, silent=True, verbose=False)
best_model = compare_models()
However, I get this error on from pycaret.classification import *:
ImportError: Missing optional dependency 'Jinja2'. DataFrame.style requires jinja2. Use pip or conda to install Jinja2.
I've already followed this instruction unsuccessfully. Unable to resolve import error from PyCaret
Any clue?
If anyone else facing this issue and if its not work like author said try ;
pip install pycaret --user
after execution of code chunk done click *restart runtime button. after install if its succesfully import libraries skip markupsafe phase.
pip install markupsafe==2.0.1
after execution of code chunk done click *restart runtime button.
import jinja2
from pycaret.classification import *
You can also just install Jinja2 manually to solve this problem:
https://github.com/pycaret/pycaret/issues/2490

Error : from PIL import Image

I want to create a wordcloud in Python 2.7 (in OS X Yosemite).
I install the package from but when I execute:
from PIL import Image
an error appears:
from PIL import _imaging as core
ImportError: dlopen(/Applications/anaconda/lib/python2.7/site-packages/PIL/_imaging.so, 2): Library not loaded: libjpeg.8.dylib
Referenced from: /Applications/anaconda/lib/python2.7/site-packages/PIL/_imaging.so
Reason: image not found
Remember to install the prerequisites.
OS X Installation
We provide binaries for OS X in the form of Python Wheels. Alternatively you can compile Pillow from soure with XCode.
The easiest way to install external libraries is via Homebrew. After you install Homebrew, run:
$ brew install libtiff libjpeg webp little-cms2
Install Pillow with:
$ pip install Pillow

Install BeautifulSoup, mrjob, pattern, and seaborn on python 2.7 on Jupyter

I am learning how to use the new Jupyter. I want to install packages:BeautifulSoup, mrjob, pattern, and seaborn on python 2.7. I first tried to do so by running pip install BeautifulSoup mrjob pattern seaborn That all returns: SyntaxError: invalid syntax
I also tried from bs4 import BeautifulSoup, it did work for Beautifulsoup. But I still don't know how to install other packages.
Wondering anyone know why there was syntax error for using pip install? Is that because I haven't installed pip on python 2.7?
I was also able to install these packages from iphython notebook window by running
import pip
def install(package):
pip.main(['install', package])
install('BeautifulSoup4')
Have you tried installing one package at a time. This helps you find which installation command not working.
You can find Julia packages here.
The problem was I was running pip from inside Jupyter. However, Jupyter is a command line program. Thanks to Mwaskom, the solution is run it from a terminal using:
pip install BeautifulSoup mrjob pattern seaborn
You could try:
!pip install BeautifulSoup mrjob pattern seaborn